Battery constructor

const Battery({
  1. required double level,
  2. required bool isCharging,
})

Implementation

const Battery({
  required this.level,
  required this.isCharging,
});