TransactionMovement.fromJson constructor
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(),
);