UserLocation constructor
//////////// ////////////
Implementation
// II.B - Constructor
///////////////
UserLocation({
required this.userId,
required this.location,
required this.timestamp,
this.speed,
this.heading,
this.accuracy,
});
//////////// ////////////
// II.B - Constructor
///////////////
UserLocation({
required this.userId,
required this.location,
required this.timestamp,
this.speed,
this.heading,
this.accuracy,
});