getMacro method

String? getMacro(
  1. String name
)

Returns a macro by name, or null if no macro is found.

Implementation

String? getMacro(String name) {
  assert(_localDocumentationBuilt);
  return _macros[name];
}