sendBreathingLight method

Future<void> sendBreathingLight(
  1. bool breathingLight
)

Implementation

Future<void> sendBreathingLight(bool breathingLight) async {
  await mConnMethodChannel.invokeMethod(
      'sendBreathingLight', <String, bool>{"breathingLight": breathingLight});
}