ShippingNoteInfos constructor

ShippingNoteInfos({
  1. String? shippingNoteNumber,
  2. String? serialNumber,
  3. String? startCountrySubdivisionCode,
  4. String? endCountrySubdivisionCode,
  5. String? startLongitude,
  6. String? startLatitude,
  7. String? endLongitude,
  8. String? endLatitude,
  9. String? startLocationText,
  10. String? endLocationText,
})

Implementation

ShippingNoteInfos({
  String? shippingNoteNumber,
  String? serialNumber,
  String? startCountrySubdivisionCode,
  String? endCountrySubdivisionCode,
  String? startLongitude,
  String? startLatitude,
  String? endLongitude,
  String? endLatitude,
  String? startLocationText,
  String? endLocationText,
}) {
  _shippingNoteNumber = shippingNoteNumber;
  _serialNumber = serialNumber;
  _startCountrySubdivisionCode = startCountrySubdivisionCode;
  _endCountrySubdivisionCode = endCountrySubdivisionCode;
  _startLongitude = startLongitude;
  _startLatitude = startLatitude;
  _endLongitude = endLongitude;
  _endLatitude = endLatitude;
  _startLocationText = startLocationText;
  _endLocationText = endLocationText;
}