setMapPadding method

Future<void> setMapPadding(
  1. int start,
  2. int top,
  3. int end,
  4. int bottom,
)

Sets padding on the map.

Implementation

Future<void> setMapPadding(int start, int top, int end, int bottom) {
  return MapcontrolPlatform.instance.setMapPadding(start, top, end, bottom);
}