registerAbstractType method

  1. @nonVirtual
void registerAbstractType(
  1. String name,
  2. Map<String, EditorPropertyType> properties
)

Method for registering a property without a resolver.

Implementation

@nonVirtual
void registerAbstractType(
    String name, Map<String, EditorPropertyType> properties) {
  _schema[name] = EditorSpecProperty(properties, abstract: true);
}