registerFlowTemplate<T extends Template> function

void registerFlowTemplate<T extends Template>(
  1. String tagName,
  2. TemplateConstructor<T> constructor
)

Implementation

void registerFlowTemplate<T extends Template>(String tagName, TemplateConstructor<T> constructor) {
  _flowConstructors[tagName.toLowerCase()] = constructor;
}