setGoogleMapApiKey method
Implementation
@override
Future<void> setGoogleMapApiKey(String mapKey) async {
Map<String, dynamic> requestData = {"mapKey": mapKey};
methodChannel.invokeMethod('setGoogleMapKey', requestData).then((value) {
debugPrint("setGoogleMapKey :$value");
});
}