TestVerifyUint32 constructor
TestVerifyUint32({
- int? optionalUint321,
- int? optionalUint322,
- TestAllTypes? optionalAllTypes,
- Iterable<
TestAllTypes> ? repeatedAllTypes, - int? optionalUint3263,
- int? optionalUint3264,
Implementation
factory TestVerifyUint32({
$core.int? optionalUint321,
$core.int? optionalUint322,
TestAllTypes? optionalAllTypes,
$core.Iterable<TestAllTypes>? repeatedAllTypes,
$core.int? optionalUint3263,
$core.int? optionalUint3264,
}) {
final result = create();
if (optionalUint321 != null) result.optionalUint321 = optionalUint321;
if (optionalUint322 != null) result.optionalUint322 = optionalUint322;
if (optionalAllTypes != null) result.optionalAllTypes = optionalAllTypes;
if (repeatedAllTypes != null)
result.repeatedAllTypes.addAll(repeatedAllTypes);
if (optionalUint3263 != null) result.optionalUint3263 = optionalUint3263;
if (optionalUint3264 != null) result.optionalUint3264 = optionalUint3264;
return result;
}