TFieldRecord typedef
TFieldRecord = ({List<Map<String, dynamic> > ? children, String? description, Object? fallback, List<String> ? fieldPath, String? fieldType, bool? foreignKey, bool? nullable, bool? primaryKey})
A record representing a field. Similar to FieldModel.
Implementation
typedef TFieldRecord = ({
List<String>? fieldPath,
String? fieldType,
bool? nullable,
List<Map<String, dynamic>>? children,
bool? primaryKey,
bool? foreignKey,
Object? fallback,
String? description,
});