removeLayer method

Future<void> removeLayer(
  1. String layerId
)

Removes a Mapbox style layer

Implementation

Future<void> removeLayer(String layerId) {
  return _mapboxGlPlatform.removeLayer(layerId);
}