Towing constructor

Towing({
  1. int? sellerOrderId,
  2. double? lat,
  3. double? long,
  4. String? address,
  5. String? arrivalDate,
  6. String? category,
  7. int? userId,
  8. String? status,
  9. bool? phoneNumber,
  10. String? createdAt,
  11. int? id,
})

Implementation

Towing(
    {this.sellerOrderId,
      this.lat,
      this.long,
      this.address,
      this.arrivalDate,
      this.category,
      this.userId,
      this.status,
      this.phoneNumber,
      this.createdAt,
      this.id});