DataEncryptionKey.loadFromBytes constructor
Convert raw key bytes into a DataEncryptionKey
Implementation
DataEncryptionKey.loadFromBytes(List<int> bytes) {
assert(bytes.isNotEmpty);
this._key = bytes;
}
Convert raw key bytes into a DataEncryptionKey
DataEncryptionKey.loadFromBytes(List<int> bytes) {
assert(bytes.isNotEmpty);
this._key = bytes;
}