Transaction.fromJson constructor
Transaction.fromJson(
- String source
Generate an object from the JSON
Implementation
factory Transaction.fromJson(String source) =>
Transaction.fromMap(json.decode(source) as Map<String, dynamic>);