BuyerAddress.fromJson constructor

BuyerAddress.fromJson(
  1. Map json_
)

Implementation

BuyerAddress.fromJson(core.Map json_)
  : this(
      buyerCountry: json_['buyerCountry'] as core.String?,
      buyerPostcode: json_['buyerPostcode'] as core.String?,
      buyerState: json_['buyerState'] as core.String?,
    );