FieldOptions_EditionDefault constructor

FieldOptions_EditionDefault({
  1. String? value,
  2. Edition? edition,
})

Implementation

factory FieldOptions_EditionDefault({
  $core.String? value,
  Edition? edition,
}) {
  final $result = create();
  if (value != null) {
    $result.value = value;
  }
  if (edition != null) {
    $result.edition = edition;
  }
  return $result;
}