ExtensionRangeOptions_Declaration constructor

ExtensionRangeOptions_Declaration({
  1. int? number,
  2. String? fullName,
  3. String? type,
  4. bool? reserved,
  5. bool? repeated,
})

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;
}