famedlysdk/lib/src/utils/MatrixFile.dart
2019-10-18 11:05:07 +00:00

8 lines
127 B
Dart

class MatrixFile {
List<int> bytes;
String path;
MatrixFile({this.bytes, this.path});
int get size => bytes.length;
}