GoesOption constructor

GoesOption({
  1. String? with_1,
  2. String? msgFormat,
})

Implementation

factory GoesOption({
  $core.String? with_1,
  $core.String? msgFormat,
}) {
  final _result = create();
  if (with_1 != null) {
    _result.with_1 = with_1;
  }
  if (msgFormat != null) {
    _result.msgFormat = msgFormat;
  }
  return _result;
}