Place constructor

Place({
  1. required String id,
  2. required double lat,
  3. required double lng,
  4. required String note,
  5. required String timestamp,
  6. String? address,
  7. bool isLocal = false,
  8. bool isEncrypted = false,
})

Implementation

Place({
  required this.id,
  required this.lat,
  required this.lng,
  required this.note,
  required this.timestamp,
  this.address,
  this.isLocal = false,
  this.isEncrypted = false,
});