TestExtremeDefaultValues constructor
TestExtremeDefaultValues({
- List<
int> ? escapedBytes, - int? largeUint32,
- Int64? largeUint64,
- int? smallInt32,
- Int64? smallInt64,
- String? utf8String,
- double? zeroFloat,
- double? oneFloat,
- double? smallFloat,
- double? negativeOneFloat,
- double? negativeFloat,
- double? largeFloat,
- double? smallNegativeFloat,
- double? infDouble,
- double? negInfDouble,
- double? nanDouble,
- double? infFloat,
- double? negInfFloat,
- double? nanFloat,
- String? cppTrigraph,
- int? reallySmallInt32,
- Int64? reallySmallInt64,
- String? stringWithZero,
- List<
int> ? bytesWithZero, - String? stringPieceWithZero,
- String? cordWithZero,
- String? replacementString,
Implementation
factory TestExtremeDefaultValues({
$core.List<$core.int>? escapedBytes,
$core.int? largeUint32,
$fixnum.Int64? largeUint64,
$core.int? smallInt32,
$fixnum.Int64? smallInt64,
$core.String? utf8String,
$core.double? zeroFloat,
$core.double? oneFloat,
$core.double? smallFloat,
$core.double? negativeOneFloat,
$core.double? negativeFloat,
$core.double? largeFloat,
$core.double? smallNegativeFloat,
$core.double? infDouble,
$core.double? negInfDouble,
$core.double? nanDouble,
$core.double? infFloat,
$core.double? negInfFloat,
$core.double? nanFloat,
$core.String? cppTrigraph,
$core.int? reallySmallInt32,
$fixnum.Int64? reallySmallInt64,
$core.String? stringWithZero,
$core.List<$core.int>? bytesWithZero,
$core.String? stringPieceWithZero,
$core.String? cordWithZero,
$core.String? replacementString,
}) {
final result = create();
if (escapedBytes != null) result.escapedBytes = escapedBytes;
if (largeUint32 != null) result.largeUint32 = largeUint32;
if (largeUint64 != null) result.largeUint64 = largeUint64;
if (smallInt32 != null) result.smallInt32 = smallInt32;
if (smallInt64 != null) result.smallInt64 = smallInt64;
if (utf8String != null) result.utf8String = utf8String;
if (zeroFloat != null) result.zeroFloat = zeroFloat;
if (oneFloat != null) result.oneFloat = oneFloat;
if (smallFloat != null) result.smallFloat = smallFloat;
if (negativeOneFloat != null) result.negativeOneFloat = negativeOneFloat;
if (negativeFloat != null) result.negativeFloat = negativeFloat;
if (largeFloat != null) result.largeFloat = largeFloat;
if (smallNegativeFloat != null)
result.smallNegativeFloat = smallNegativeFloat;
if (infDouble != null) result.infDouble = infDouble;
if (negInfDouble != null) result.negInfDouble = negInfDouble;
if (nanDouble != null) result.nanDouble = nanDouble;
if (infFloat != null) result.infFloat = infFloat;
if (negInfFloat != null) result.negInfFloat = negInfFloat;
if (nanFloat != null) result.nanFloat = nanFloat;
if (cppTrigraph != null) result.cppTrigraph = cppTrigraph;
if (reallySmallInt32 != null) result.reallySmallInt32 = reallySmallInt32;
if (reallySmallInt64 != null) result.reallySmallInt64 = reallySmallInt64;
if (stringWithZero != null) result.stringWithZero = stringWithZero;
if (bytesWithZero != null) result.bytesWithZero = bytesWithZero;
if (stringPieceWithZero != null)
result.stringPieceWithZero = stringPieceWithZero;
if (cordWithZero != null) result.cordWithZero = cordWithZero;
if (replacementString != null) result.replacementString = replacementString;
return result;
}