class MatrixFile { List bytes; String path; MatrixFile({this.bytes, this.path}); Future> readAsBytes() async => bytes; }