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