ShippingNoteInfos constructor
ShippingNoteInfos({})
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;
}