LocationDataModel constructor

LocationDataModel({
  1. String? status,
  2. int? code,
  3. String? timestamp,
  4. Data? data,
})

Implementation

LocationDataModel({
  this.status,
  this.code,
  this.timestamp,
  this.data,
});