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