fromBuffer method

Bip39 fromBuffer(
  1. List<int> buf
)

Implementation

Bip39 fromBuffer(List<int> buf) {
  return this.fromBr(Br(buf: buf.asUint8List()));
}