toJson method

Map<String, dynamic> toJson()

Implementation

Map<String, dynamic> toJson() {
  return {
    'after_value': afterValue,
    'before_value': beforeValue,
    'entry_function_id_str': entryFunctionIdStr,
    'event_account_address': eventAccountAddress,
    'event_index': eventIndex,
    'from_address': fromAddress,
    'is_fungible_v2': isFungibleV2,
    'property_version_v1': propertyVersionV1,
    'to_address': toAddress,
    'token_amount': tokenAmount,
    'token_data_id': tokenDataId,
    'token_standard': tokenStandard,
    'transaction_timestamp': transactionTimestamp,
    'transaction_version': transactionVersion,
    'type': type,
  };
}