disconnectRemoteConfig method

  1. @override
Future<String?> disconnectRemoteConfig(
  1. String channelId
)
override

Implementation

@override
Future<String?> disconnectRemoteConfig(String channelId) async {
  final result = await methodChannel.invokeMethod<String>(
    'disconnectRemoteConfig',
    channelId,
  );
  return result;
}