fromHex method

Tx fromHex(
  1. String str
)

Implementation

Tx fromHex(String str) {
  return this.fromBuffer(hex.decode(str));
}