IfInvalidOption constructor

IfInvalidOption({
  1. String? msgFormat,
})

Implementation

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