doc method

  1. @MPI(name: "_{mesh.name}.builtin.doc")
Future<String?> doc(
  1. String name,
  2. String formatter, {
  3. Context? ctx,
})

Doc export the documents.

Parameters: name - mesh.name formatter - document formatter formatted - document Returns: formatted document

Implementation

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