TestOneofBackwardsCompatible_FooGroup constructor

TestOneofBackwardsCompatible_FooGroup({
  1. int? a,
  2. String? b,
})

Implementation

factory TestOneofBackwardsCompatible_FooGroup({
  $core.int? a,
  $core.String? b,
}) {
  final result = create();
  if (a != null) result.a = a;
  if (b != null) result.b = b;
  return result;
}