FieldValue constructor

FieldValue({
  1. Date? date,
  2. Integer? integer,
  3. Selection? selection,
  4. SelectionList? selectionList,
  5. Text? text,
  6. TextList? textList,
  7. SingleUser? user,
  8. UserList? userList,
})

Implementation

FieldValue({
  this.date,
  this.integer,
  this.selection,
  this.selectionList,
  this.text,
  this.textList,
  this.user,
  this.userList,
});