Transaction.fromHex constructor

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

Implementation

factory Transaction.fromHex(
  String hex, {
  bool noStrict = false,
}) {
  return Transaction.fromBuffer(
    HEX.decode(hex) as Uint8List,
    noStrict: noStrict,
  );
}