fetchRemoteConfig method

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

Implementation

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