TimeOption constructor
Implementation
factory TimeOption({
Time? in_1,
$core.String? msgFormat,
}) {
final _result = create();
if (in_1 != null) {
_result.in_1 = in_1;
}
if (msgFormat != null) {
_result.msgFormat = msgFormat;
}
return _result;
}