scalarFields property

List<FieldInfo> get scalarFields

Get all scalar (non-relation) fields.

Implementation

List<FieldInfo> get scalarFields =>
    fields.values.where((f) => !f.isRelation).toList();