LocationNotificationModel constructor

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

Implementation

LocationNotificationModel({
  this.key,
  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,
});