Location constructor

const Location(
  1. String location
)

takes in a string and translates it into coordinates

Implementation

const Location(this.location)
    : x = 0,
      y = 0,
      z = 0;