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