sendBatterySaving method

Future<void> sendBatterySaving(
  1. bool enable
)

Implementation

Future<void> sendBatterySaving(bool enable) async {
  await mConnMethodChannel
      .invokeMethod("sendBatterySaving", <String, bool>{"enable": enable});
}