type property

String get type
inherited

Logical entity name, singular.

Defaults to the lowercase string representation of type TModel. Override in subclasses for custom entity names.

Example: if TModel is UserEvent, returns userevent. Example: if TModel is TodoItem, returns todoitem.

Implementation

String get type => PluralizationUtils.toSnakeCase(TModel.toString());