PacketList constructor

PacketList({
  1. required String registrationId,
  2. required String name,
  3. required String userType,
  4. required bool isOnline,
  5. required double currentLocationLat,
  6. required double currentLocationLng,
  7. required dynamic fcmToken,
  8. required dynamic note,
  9. required String vehicleType,
  10. required String status,
  11. required DateTime createDate,
  12. required dynamic updateDate,
})

Implementation

PacketList({
  required this.registrationId,
  required this.name,
  required this.userType,
  required this.isOnline,
  required this.currentLocationLat,
  required this.currentLocationLng,
  required this.fcmToken,
  required this.note,
  required this.vehicleType,
  required this.status,
  required this.createDate,
  required this.updateDate,
});