BatteryController constructor
BatteryController()
Implementation
BatteryController() {
// Platform check to make sure the plugin only works on Android
if (Platform.isAndroid == false) {
throw UnsupportedError(
'SystemStats functionality is only supported on Android',
);
}
}