ExtensionRangeOptions_Declaration constructor
ExtensionRangeOptions_Declaration({})
Implementation
factory ExtensionRangeOptions_Declaration({
$core.int? number,
$core.String? fullName,
$core.String? type,
$core.bool? reserved,
$core.bool? repeated,
}) {
final result = create();
if (number != null) result.number = number;
if (fullName != null) result.fullName = fullName;
if (type != null) result.type = type;
if (reserved != null) result.reserved = reserved;
if (repeated != null) result.repeated = repeated;
return result;
}