IfMissingOption constructor Null safety

IfMissingOption(
  1. {String? msgFormat}
)

Implementation

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