TestParsingMergeLite_RepeatedGroup constructor

TestParsingMergeLite_RepeatedGroup({
  1. TestAllTypesLite? repeatedGroupAllTypes,
})

Implementation

factory TestParsingMergeLite_RepeatedGroup({
  TestAllTypesLite? repeatedGroupAllTypes,
}) {
  final _result = create();
  if (repeatedGroupAllTypes != null) {
    _result.repeatedGroupAllTypes = repeatedGroupAllTypes;
  }
  return _result;
}