DeviceTileCard constructor

const DeviceTileCard({
  1. Key? key,
  2. required String imagePath,
  3. required String label,
  4. required String value,
})

Implementation

const DeviceTileCard({
  super.key,
  required this.imagePath,
  required this.label,
  required this.value,
});