class RubyLsp::Message

@abstract
A notification to be sent to the client

def initialize(method:, params:)

: (method: String, params: Object) -> void
def initialize(method:, params:)
  @method = method
  @params = params
end

def to_hash

Other tags:
    Abstract: -
def to_hash
  raise AbstractMethodInvokedError
end