setThemeBotBubbleBackgroundColor static method

Future<bool> setThemeBotBubbleBackgroundColor(
  1. String color
)

Implementation

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