TestVerifyOneInt32BigFieldNumber constructor
TestVerifyOneInt32BigFieldNumber({
- Int64? optionalInt641,
- Int64? optionalInt642,
- TestAllTypes? optionalAllTypes,
- Iterable<
TestAllTypes> ? repeatedAllTypes, - Int64? optionalInt6463,
- Int64? optionalInt6464,
- int? optionalInt3265,
Implementation
factory TestVerifyOneInt32BigFieldNumber({
$fixnum.Int64? optionalInt641,
$fixnum.Int64? optionalInt642,
TestAllTypes? optionalAllTypes,
$core.Iterable<TestAllTypes>? repeatedAllTypes,
$fixnum.Int64? optionalInt6463,
$fixnum.Int64? optionalInt6464,
$core.int? optionalInt3265,
}) {
final result = create();
if (optionalInt641 != null) result.optionalInt641 = optionalInt641;
if (optionalInt642 != null) result.optionalInt642 = optionalInt642;
if (optionalAllTypes != null) result.optionalAllTypes = optionalAllTypes;
if (repeatedAllTypes != null)
result.repeatedAllTypes.addAll(repeatedAllTypes);
if (optionalInt6463 != null) result.optionalInt6463 = optionalInt6463;
if (optionalInt6464 != null) result.optionalInt6464 = optionalInt6464;
if (optionalInt3265 != null) result.optionalInt3265 = optionalInt3265;
return result;
}