LocationNotificationModel constructor

LocationNotificationModel({
  1. double? lat,
  2. double? long,
  3. String? atsignCreator,
  4. String? receiver,
  5. DateTime? from,
  6. DateTime? to,
  7. bool isRequest = false,
  8. bool isAcknowledgment = false,
  9. bool isAccepted = false,
  10. bool isExited = false,
  11. bool isSharing = true,
  12. bool updateMap = false,
  13. bool rePrompt = false,
})

Implementation

LocationNotificationModel({
  this.lat,
  this.long,
  this.atsignCreator,
  this.receiver,
  this.from,
  this.to,
  this.isRequest = false,
  this.isAcknowledgment = false,
  this.isAccepted = false,
  this.isExited = false,
  this.isSharing = true,
  this.updateMap = false,
  this.rePrompt = false,
});