Entry_Form constructor

Entry_Form({
  1. String? text,
  2. int? type,
})

Implementation

factory Entry_Form({
  $core.String? text,
  $core.int? type,
}) {
  final _result = create();
  if (text != null) {
    _result.text = text;
  }
  if (type != null) {
    _result.type = type;
  }
  return _result;
}