Transaction.fromHex constructor

Transaction.fromHex(
  1. String hex, {
  2. bool noStrict = false,
})

Implementation

factory Transaction.fromHex(String hex, {bool noStrict = false}) {
  return Transaction.fromBuffer(dynamicToUint8List(hex), noStrict: noStrict);
}