ReceiptCall.fromJson constructor
Implementation
factory ReceiptCall.fromJson(Map<String, dynamic> data) {
return ReceiptCall(
to: addHexPrefix(data['to']),
amount: parseBigInt(data['amount']),
assetId: addHexPrefix(data['assetId']));
}