8 lines
127 B
Dart
8 lines
127 B
Dart
class MatrixFile {
|
|
List<int> bytes;
|
|
String path;
|
|
|
|
MatrixFile({this.bytes, this.path});
|
|
int get size => bytes.length;
|
|
}
|