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