getConfigUrl method

  1. @override
Future<String> getConfigUrl()
override

Implementation

@override
Future<String> getConfigUrl() async {
  try {
    return await _configChannel
            .invokeMethod<String>(SuperfineSdkChannelMethods.getConfigUrl) ??
        "";
  } catch (e) {
    print("Error fetching Config URL: $e");
    return "Error";
  }
}