ExtensionRangeOptions constructor
ExtensionRangeOptions({
- Iterable<
ExtensionRangeOptions_Declaration> ? declaration, - ExtensionRangeOptions_VerificationState? verification,
- FeatureSet? features,
- Iterable<
UninterpretedOption> ? uninterpretedOption,
Implementation
factory ExtensionRangeOptions({
$core.Iterable<ExtensionRangeOptions_Declaration>? declaration,
ExtensionRangeOptions_VerificationState? verification,
FeatureSet? features,
$core.Iterable<UninterpretedOption>? uninterpretedOption,
}) {
final result = create();
if (declaration != null) result.declaration.addAll(declaration);
if (verification != null) result.verification = verification;
if (features != null) result.features = features;
if (uninterpretedOption != null)
result.uninterpretedOption.addAll(uninterpretedOption);
return result;
}