takeSnapshot method

Future<Uint8List?> takeSnapshot({
  1. required int mapId,
})

Returns the image bytes of the map.

Returns null if a snapshot cannot be created.

Implementation

Future<Uint8List?> takeSnapshot({
  required int mapId,
}) {
  throw UnimplementedError('takeSnapshot() has not been implemented.');
}