fromInt static method

BatteryHealth fromInt(
  1. int value
)

Implementation

static BatteryHealth fromInt(int value) => BatteryHealth.values.firstWhere((element) => element.value == value, orElse: () => BatteryHealth.unknown);