class Cucumber::Messages::TableCell

def self.from_h(hash)

def self.from_h(hash)
  return nil if hash.nil?
  self.new(
    location: Location.from_h(hash[:location]),
    value: hash[:value],
  )
end

def initialize(

def initialize(
  location: Location.new,
  value: ''
)
  @location = location
  @value = value
end