setThemeBotIcon static method

Future<bool> setThemeBotIcon(
  1. String iconUrl
)

Implementation

static Future<bool> setThemeBotIcon(String iconUrl) async {
  bool isThemeBotIconAssigned =
      await _channel.invokeMethod('setThemeBotIcon', {"iconUrl": iconUrl});
  return isThemeBotIconAssigned;
}