15 lines
250 B
Dart
15 lines
250 B
Dart
import 'dart:typed_data';
|
|
|
|
import 'package:flutter/foundation.dart';
|
|
|
|
@immutable
|
|
class MapTile {
|
|
final int width, height;
|
|
final Uint8List data;
|
|
|
|
const MapTile({
|
|
required this.width,
|
|
required this.height,
|
|
required this.data,
|
|
});
|
|
}
|