RaliRoute constructor
//////////// ////////////
Implementation
// II.B - Constructor
///////////////
RaliRoute({
this.id,
required this.name,
required this.createdBy,
required this.routeData,
this.isPublic = false,
List<String>? sharedWith,
Timestamp? createdAt,
List<String>? tags,
}) :
sharedWith = sharedWith ?? [],
createdAt = createdAt ?? Timestamp.now(),
tags = tags ?? [];