fetchRemoteConfig method
Implementation
@override
Future<String> fetchRemoteConfig() async {
try {
return await _configChannel.invokeMethod<String>(
SuperfineSdkChannelMethods.fetchRemoteConfig) ??
"";
} catch (e) {
print("Error fetch remote config: $e");
return "";
}
}