BaseNote constructor

BaseNote({
  1. required LatLng location,
  2. int? id,
  3. required int? type,
  4. DateTime? created,
  5. bool deleting = false,
})

Implementation

BaseNote(
    {required this.location,
    this.id,
    required this.type,
    DateTime? created,
    this.deleting = false})
    : created = created ?? DateTime.now();