PartialTx.fromBase64 constructor

PartialTx.fromBase64(
  1. String encoded
)

Implementation

factory PartialTx.fromBase64(String encoded) {
  final bytes = base64Decode(encoded);
  return PartialTx.fromBytes(Uint8List.fromList(bytes));
}