class Cucumber::Messages::StepMatchArgumentsList

def self.from_h(hash)

def self.from_h(hash)
  return nil if hash.nil?
  self.new(
    step_match_arguments: hash[:stepMatchArguments]&.map { |item| StepMatchArgument.from_h(item) },
  )
end

def initialize(

def initialize(
  step_match_arguments: []
)
  @step_match_arguments = step_match_arguments
end