contentBuilders method

List<ContentBuilder<ContentItem>>? contentBuilders()

Returns a map of all content builders, where the key is the schemaType and the value is the ContentBuilder.

Implementation

List<ContentBuilder<ContentItem>>? contentBuilders() {
  return (vyuh.extensionBuilder<ContentExtensionDescriptor>()
          as ContentExtensionBuilder?)
      ?.contentBuilders();
}