TimeOption constructor

TimeOption({
  1. Time? in_1,
  2. String? msgFormat,
})

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;
}