read method

  1. @MPI(name: "mesh.fs.read")
Future<Uint8List?> read(
  1. String path, {
  2. Context? ctx,
})

Read from the path.

Implementation

@MPI(name: "mesh.fs.read")
Future<Uint8List?> read(String path, {Context? ctx}) {
  throw UnimplementedError('read() has not been implemented.');
}