MapLoadingErrorEventData constructor

MapLoadingErrorEventData({
  1. required MapLoadErrorType type,
  2. required String message,
  3. String? sourceId,
  4. TileID? tileId,
  5. required int timestamp,
})

Implementation

MapLoadingErrorEventData({
  required this.type,
  required this.message,
  this.sourceId,
  this.tileId,
  required this.timestamp,
});