UninterpretedOption constructor
UninterpretedOption({})
Implementation
factory UninterpretedOption({
$core.Iterable<UninterpretedOption_NamePart>? name,
$core.String? identifierValue,
$fixnum.Int64? positiveIntValue,
$fixnum.Int64? negativeIntValue,
$core.double? doubleValue,
$core.List<$core.int>? stringValue,
$core.String? aggregateValue,
}) {
final result = create();
if (name != null) result.name.addAll(name);
if (identifierValue != null) result.identifierValue = identifierValue;
if (positiveIntValue != null) result.positiveIntValue = positiveIntValue;
if (negativeIntValue != null) result.negativeIntValue = negativeIntValue;
if (doubleValue != null) result.doubleValue = doubleValue;
if (stringValue != null) result.stringValue = stringValue;
if (aggregateValue != null) result.aggregateValue = aggregateValue;
return result;
}