toJson method

Map<String, dynamic> toJson()

Implementation

Map<String, dynamic> toJson() {
  final Map<String, dynamic> json = <String, dynamic>{};
  json['address'] = address;
  json['asset_contract_type'] = assetContractType;
  json['created_date'] = createdDate;
  json['name'] = name;
  json['nft_version'] = nftVersion;
  json['opensea_version'] = openseaVersion;
  json['owner'] = owner;
  json['schema_name'] = schemaName;
  json['symbol'] = symbol;
  json['total_supply'] = totalSupply;
  json['description'] = description;
  json['external_link'] = externalLink;
  json['image_url'] = imageUrl;
  json['default_to_fiat'] = defaultToFiat;
  json['dev_buyer_fee_basis_points'] = devBuyerFeeBasisPoints;
  json['dev_seller_fee_basis_points'] = devSellerFeeBasisPoints;
  json['only_proxied_transfers'] = onlyProxiedTransfers;
  json['opensea_buyer_fee_basis_points'] = openseaBuyerFeeBasisPoints;
  json['opensea_seller_fee_basis_points'] = openseaSellerFeeBasisPoints;
  json['buyer_fee_basis_points'] = buyerFeeBasisPoints;
  json['seller_fee_basis_points'] = sellerFeeBasisPoints;
  json['payout_address'] = payoutAddress;
  return json;
}