WooShippingZoneMethodTaxStatus.fromJson constructor
WooShippingZoneMethodTaxStatus.fromJson(
- Map<String, dynamic> json
)
Implementation
WooShippingZoneMethodTaxStatus.fromJson(Map<String, dynamic> json) {
id = json['id'];
label = json['label'];
description = json['description'];
type = json['type'];
value = json['value'];
taxDefault = json['default'];
tip = json['tip'];
placeholder = json['placeholder'];
options = json['options'] != null
? new WooShippingZoneMethodOptions.fromJson(json['options'])
: null;
}