changeAppLogo static method

Future<bool> changeAppLogo({
  1. required String activityName,
})

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;
  }
}