setMicBackgroundColor static method

Future<bool> setMicBackgroundColor(
  1. String color
)

Implementation

static Future<bool> setMicBackgroundColor(String color) async {
  bool isMicBackgroundColorSet =
      await _channel.invokeMethod('setMicBackgroundColor', {"color": color});
  return isMicBackgroundColorSet;
}