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;
}