readPower property Null safety
Use this for get current power value
Implementation
static Future<int?> get readPower async {
final int? power = await _channel.invokeMethod('getPower');
return power;
}
Use this for get current power value
static Future<int?> get readPower async {
final int? power = await _channel.invokeMethod('getPower');
return power;
}