Transaction.fromHex constructor

Transaction.fromHex(String hex)

Creates transaction from its hex representation

Implementation

factory Transaction.fromHex(String hex) {
  return Transaction.fromBuffer(HEX.decode(hex));
}