hideLayerGroup method

Future<void> hideLayerGroup(
  1. String groupKey
)

Hides an entire group of layers.

Implementation

Future<void> hideLayerGroup(String groupKey) async {
  await layers.hideGroup(groupKey);
}