dump method

  1. @MPI(name: "_{mesh.name}.builtin.dump")
Future<Map<String, String>?> dump(
  1. List<String> names, {
  2. Context? ctx,
})

Dump the application data.

Implementation

@MPI(name: "_{mesh.name}.builtin.dump")
Future<Map<String, String>?> dump(List<String> names, {Context? ctx}) {
  throw UnimplementedError('dump() has not been implemented.');
}