toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() => {
      if (price != null) 'price': price!,
      if (regionCode != null) 'regionCode': regionCode!,
      if (taxAmount != null) 'taxAmount': taxAmount!,
    };