GoodsAndServicesTax.fromCBJson constructor
Creates a GoodsAndServicesTax from a Coinbase JSON object.
Implementation
factory GoodsAndServicesTax.fromCBJson(Map<String, dynamic> json) {
return GoodsAndServicesTax(
rate: json['rate'],
type: json['type'],
);
}