FieldDetails constructor

FieldDetails({
  1. List<String>? clauseNames,
  2. bool? custom,
  3. String? id,
  4. String? key,
  5. String? name,
  6. bool? navigable,
  7. bool? orderable,
  8. JsonTypeBean? schema,
  9. Scope? scope,
  10. bool? searchable,
})

Implementation

FieldDetails(
    {List<String>? clauseNames,
    bool? custom,
    this.id,
    this.key,
    this.name,
    bool? navigable,
    bool? orderable,
    this.schema,
    this.scope,
    bool? searchable})
    : clauseNames = clauseNames ?? [],
      custom = custom ?? false,
      navigable = navigable ?? false,
      orderable = orderable ?? false,
      searchable = searchable ?? false;