TestOneofBackwardsCompatible constructor

TestOneofBackwardsCompatible({
  1. int? fooInt,
  2. String? fooString,
  3. TestAllTypes? fooMessage,
  4. TestOneofBackwardsCompatible_FooGroup? fooGroup,
})

Implementation

factory TestOneofBackwardsCompatible({
  $core.int? fooInt,
  $core.String? fooString,
  TestAllTypes? fooMessage,
  TestOneofBackwardsCompatible_FooGroup? fooGroup,
}) {
  final result = create();
  if (fooInt != null) result.fooInt = fooInt;
  if (fooString != null) result.fooString = fooString;
  if (fooMessage != null) result.fooMessage = fooMessage;
  if (fooGroup != null) result.fooGroup = fooGroup;
  return result;
}