addCustomMarkerBase64WithInfoWindow method
Implementation
Future<void> addCustomMarkerBase64WithInfoWindow(String markerID,double latitude,double longitude, String img, int width, int height, String title, String description) async {
var label = "$markerID:$title";
return _channel.invokeMethod('addCustomMarkerBase64WithInfoWindow', {'latitude': latitude,'longitude':longitude , 'width': width, 'height':height, 'img' : img, 'title' : label, 'description' : description});
}