doc method

  1. @override
Future<String?> doc(
  1. String name,
  2. String formatter, {
  3. Context? ctx,
})
override

Doc export the documents.

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

Implementation

@override
Future<String?> doc(String name, String formatter, {Context? ctx}) async {
  return await _h.invoke(this, _methods['doc']!, [name, formatter], ctx);
}