Transaction.fromHex constructor

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

Implementation

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