dispose method

void dispose({
  1. required int mapId,
})

Dispose of whatever resources the mapId is holding on to.

Implementation

void dispose({required int mapId}) {
  throw UnimplementedError('dispose() has not been implemented.');
}