class Cucumber::Messages::PickleStep

def self.from_h(hash)

def self.from_h(hash)
  return nil if hash.nil?
  self.new(
    argument: PickleStepArgument.from_h(hash[:argument]),
    ast_node_ids: hash[:astNodeIds],
    id: hash[:id],
    text: hash[:text],
  )
end