setCustomLoaderURL static method

Future<bool> setCustomLoaderURL(
  1. String customURL
)

Implementation

static Future<bool> setCustomLoaderURL(String customURL) async {
  bool isCustomLoaderURLSet = await _channel
      .invokeMethod('setCustomLoaderURL', {"customLoaderURL": customURL});
  return isCustomLoaderURLSet;
}