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