Transaction.fromJson constructor

Transaction.fromJson(
  1. String source
)

Generate an object from the JSON

Implementation

factory Transaction.fromJson(String source) =>
    Transaction.fromMap(json.decode(source) as Map<String, dynamic>);