toJson method

Map<String, dynamic> toJson()

Implementation

Map<String, dynamic> toJson() {
  return {
    'uri': uri,
    'token_standard': tokenStandard,
    'collection_id': collectionId,
    'collection_name': collectionName,
    'creator_address': creatorAddress,
    'description': description,
    'total_minted_v2': totalMintedV2,
    'table_handle_v1': tableHandleV1,
    'mutable_uri': mutableUri,
    'mutable_description': mutableDescription,
    'max_supply': maxSupply,
    'current_supply': currentSupply,
    'last_transaction_timestamp': lastTransactionTimestamp,
    'last_transaction_version': lastTransactionVersion,
    'cdn_asset_uris': cdnAssetUris?.toJson(),
  };
}