addMarkerCustomMarker method

Future<void> addMarkerCustomMarker(
  1. double latitude,
  2. double longitude,
  3. int width,
  4. int height,
)

Implementation

Future<void> addMarkerCustomMarker(double latitude,double longitude, int width, int height) async {
  return _channel.invokeMethod('addMarkerCustomMarker', {'latitude': latitude,'longitude':longitude , 'width': width, 'height':height});
}