class Cucumber::Messages::Step

def self.from_h(hash)

def self.from_h(hash)
  return nil if hash.nil?
  self.new(
    location: Location.from_h(hash[:location]),
    keyword: hash[:keyword],
    keyword_type: hash[:keywordType],
    text: hash[:text],
    doc_string: DocString.from_h(hash[:docString]),
    data_table: DataTable.from_h(hash[:dataTable]),
    id: hash[:id],
  )
end