Transaction.fromHex constructor
Creates transaction from its hex representation
Implementation
factory Transaction.fromHex(String hex) {
return Transaction.fromBuffer(HEX.decode(hex));
}
Creates transaction from its hex representation
factory Transaction.fromHex(String hex) {
return Transaction.fromBuffer(HEX.decode(hex));
}