AptosGraphQLTokenCollection.fromJson constructor

AptosGraphQLTokenCollection.fromJson(
  1. Map<String, dynamic> json
)

Implementation

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