TransactionMovement.fromJson constructor

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

Implementation

factory TransactionMovement.fromJson(Map<String, dynamic> json) =>
    TransactionMovement(
      amount: json['amount']?.toInt(),
      tokenAddress: json['tokenAddress'],
      to: json['to'],
      type: json['type'],
      tokenId: json['tokenId']?.toInt(),
    );