ShippingNoteInfos.fromJson constructor

ShippingNoteInfos.fromJson(
  1. dynamic json
)

Implementation

ShippingNoteInfos.fromJson(dynamic json) {
  _shippingNoteNumber = json['shippingNoteNumber'];
  _serialNumber = json['serialNumber'];
  _startCountrySubdivisionCode = json['startCountrySubdivisionCode'];
  _endCountrySubdivisionCode = json['endCountrySubdivisionCode'];
  _startLongitude = json['startLongitude'];
  _startLatitude = json['startLatitude'];
  _endLongitude = json['endLongitude'];
  _endLatitude = json['endLatitude'];
  _startLocationText = json['startLocationText'];
  _endLocationText = json['endLocationText'];
}