getHtmlFragment method

String? getHtmlFragment(
  1. String? name
)

Implementation

String? getHtmlFragment(String? name) {
  assert(_localDocumentationBuilt);
  if (name == null) {
    return null;
  }
  return _htmlFragments[name];
}