TestOneof_FooGroup constructor

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

Implementation

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