copyWith method

ProtocolVersion copyWith({
  1. Object? value = _acpCopyWithAbsent,
})

Implementation

ProtocolVersion copyWith({Object? value = _acpCopyWithAbsent}) =>
    ProtocolVersion(
      identical(value, _acpCopyWithAbsent) ? this.value : value as int,
    );