getAllFields method

List<FieldWithValue?> getAllFields()

Get a list of all fields of this model with pre-created fields.

Implementation

List<FieldWithValue?> getAllFields() {
  var list = getFields();
  return [id, serverId, creationTime, modificationTime, ...?list];
}