toJson method
Implementation
Map<String, dynamic> toJson() {
final map = <String, dynamic>{};
map['shippingNoteNumber'] = _shippingNoteNumber;
map['serialNumber'] = _serialNumber;
map['startCountrySubdivisionCode'] = _startCountrySubdivisionCode;
map['endCountrySubdivisionCode'] = _endCountrySubdivisionCode;
map['startLongitude'] = _startLongitude;
map['startLatitude'] = _startLatitude;
map['endLongitude'] = _endLongitude;
map['endLatitude'] = _endLatitude;
map['startLocationText'] = _startLocationText;
map['endLocationText'] = _endLocationText;
return map;
}