TestOneof2_NestedMessage constructor

TestOneof2_NestedMessage({
  1. Int64? mooInt,
  2. Iterable<int>? corgeInt,
})

Implementation

factory TestOneof2_NestedMessage({
  $fixnum.Int64? mooInt,
  $core.Iterable<$core.int>? corgeInt,
}) {
  final _result = create();
  if (mooInt != null) {
    _result.mooInt = mooInt;
  }
  if (corgeInt != null) {
    _result.corgeInt.addAll(corgeInt);
  }
  return _result;
}