TestVerifyInt32 constructor
TestVerifyInt32({
- int? optionalInt321,
- int? optionalInt322,
- TestAllTypes? optionalAllTypes,
- Iterable<
TestAllTypes> ? repeatedAllTypes, - int? optionalInt3263,
- int? optionalInt3264,
Implementation
factory TestVerifyInt32({
$core.int? optionalInt321,
$core.int? optionalInt322,
TestAllTypes? optionalAllTypes,
$core.Iterable<TestAllTypes>? repeatedAllTypes,
$core.int? optionalInt3263,
$core.int? optionalInt3264,
}) {
final _result = create();
if (optionalInt321 != null) {
_result.optionalInt321 = optionalInt321;
}
if (optionalInt322 != null) {
_result.optionalInt322 = optionalInt322;
}
if (optionalAllTypes != null) {
_result.optionalAllTypes = optionalAllTypes;
}
if (repeatedAllTypes != null) {
_result.repeatedAllTypes.addAll(repeatedAllTypes);
}
if (optionalInt3263 != null) {
_result.optionalInt3263 = optionalInt3263;
}
if (optionalInt3264 != null) {
_result.optionalInt3264 = optionalInt3264;
}
return _result;
}