changeAppLogo static method
changeAppLogo takes the activityName to change the current activity to
Implementation
static Future<bool> changeAppLogo({required String activityName}) async {
try {
await _channel.invokeMethod("changeAppLogo",{"activityName" : activityName});
return true;
} catch (e) {
return false;
}
}