AustralianPostParams.fromJson constructor

AustralianPostParams.fromJson(
  1. Map<String, dynamic> json
)

Implementation

AustralianPostParams.fromJson(Map<String, dynamic> json) {
  encodingTable =
      CustomerInformationInterpretingType.fromJson(json['encodingTable']);
  shortBarHeight = json['shortBarHeight'] == null
      ? null
      : json['shortBarHeight'].toDouble();
}