TransactionMovement.fromJson constructor

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

Implementation

factory TransactionMovement.fromJson(Map<String, dynamic> json) =>
    TransactionMovement(
      amount: json['amount'] == null ? null : json['amount'].toDouble(),
      nftAddress: json['nftAddress'],
      to: json['to'],
      type: json['type'],
    );