getConfig method

  1. @override
Future<String?> getConfig()
override

Implementation

@override
Future<String?> getConfig() async {
  // TODO: implement getConfig
  final config = await methodChannel.invokeMethod<String>("getConfig");
  return config;
}