TestAllTypesProto2_Data constructor

TestAllTypesProto2_Data({
  1. int? groupInt32,
  2. int? groupUint32,
})

Implementation

factory TestAllTypesProto2_Data({
  $core.int? groupInt32,
  $core.int? groupUint32,
}) {
  final _result = create();
  if (groupInt32 != null) {
    _result.groupInt32 = groupInt32;
  }
  if (groupUint32 != null) {
    _result.groupUint32 = groupUint32;
  }
  return _result;
}