InputtingBegin constructor

InputtingBegin({
  1. Int64? self,
  2. Int64? target,
  3. MessageFormat? msgFmt,
})

Implementation

factory InputtingBegin({
  $fixnum.Int64? self,
  $fixnum.Int64? target,
  $0.MessageFormat? msgFmt,
}) {
  final $result = create();
  if (self != null) {
    $result.self = self;
  }
  if (target != null) {
    $result.target = target;
  }
  if (msgFmt != null) {
    $result.msgFmt = msgFmt;
  }
  return $result;
}