ShopInfo constructor

ShopInfo({
  1. String? driverName,
  2. String? endCountrySubdivisionCode,
  3. double? endLatitude,
  4. String? endLocationText,
  5. double? endLongitude,
  6. String? shippingNoteNumber,
  7. String? startCountrySubdivisionCode,
  8. double? startLatitude,
  9. String? startLocationText,
  10. double? startLongitude,
  11. String? vehicleNumber,
})

Implementation

ShopInfo({
  this.driverName,
  this.endCountrySubdivisionCode,
  this.endLatitude,
  this.endLocationText,
  this.endLongitude,
  this.shippingNoteNumber,
  this.startCountrySubdivisionCode,
  this.startLatitude,
  this.startLocationText,
  this.startLongitude,
  this.vehicleNumber,
});