TsPacket constructor

TsPacket({
  1. required DateTime timestamp,
  2. required String tripId,
})

TsPacket is the Trip start packet.

This packet is part of the packet sent between Layrz services to identify trips.

Implementation

TsPacket({
  required this.timestamp,
  required this.tripId,
});