keyBuffer property

List<int> keyBuffer
inherited

Retrieves the key as a byte buffer

Implementation

List<int> get keyBuffer {
   return Uint8List.fromList(this._keyHex).toList();
}
void keyBuffer=(List<int> bytes)
inherited

Initialize the key from a byte buffer

bytes - Hexadecimal version of key encoded as a byte buffer

Implementation

set keyBuffer(List<int> bytes) {
    this._keyHex = bytes;
}