OsmNote constructor
OsmNote({
- int? id,
- required LatLng location,
- List<
OsmNoteComment> comments = const [], - DateTime? created,
- bool deleting = false,
Implementation
OsmNote({
super.id,
required super.location,
this.comments = const [],
super.created,
super.deleting,
}) : super(type: dbType);