setThemeBotName static method

Future<bool> setThemeBotName(
  1. String name
)

Implementation

static Future<bool> setThemeBotName(String name) async {
  bool isThemeBotNameAssigned =
      await _channel.invokeMethod('setThemeBotName', {"name": name});
  return isThemeBotNameAssigned;
}