OsmNote constructor

OsmNote({
  1. int? id,
  2. required LatLng location,
  3. List<OsmNoteComment> comments = const [],
  4. DateTime? created,
  5. bool deleting = false,
})

Implementation

OsmNote({
  super.id,
  required super.location,
  this.comments = const [],
  super.created,
  super.deleting,
}) : super(type: dbType);