famedlysdk/lib/src/utils/MatrixFile.dart

8 lines
162 B
Dart
Raw Normal View History

2019-10-18 11:05:07 +00:00
class MatrixFile {
List<int> bytes;
String path;
2019-10-23 18:14:04 +00:00
MatrixFile({this.bytes, String path}) : this.path = path.toLowerCase();
2019-10-18 11:05:07 +00:00
int get size => bytes.length;
}