Location constructor

Location({
  1. int? id,
  2. String? city,
  3. String? nation,
  4. DateTime? dateCreated,
})

Implementation

Location({this.id, this.city, this.nation, this.dateCreated});