Report constructor
//////////// ////////////
Implementation
// II.B - Constructor
///////////////
Report({
this.id,
required this.type,
required this.location,
this.geohash,
required this.createdBy,
required this.createdAt,
required this.expiresAt,
this.direction = 0,
this.lane = 0,
this.suggestedAlternative = 'none',
Map<String, dynamic>? details,
}) : details = details ?? {};