MapNote constructor

MapNote({
  1. int? id,
  2. required LatLng location,
  3. String? author,
  4. required String message,
  5. bool deleting = false,
  6. DateTime? created,
})

Implementation

MapNote(
    {super.id,
    required super.location,
    this.author,
    required this.message,
    super.deleting,
    super.created})
    : super(type: dbType);