CipherKey.fromList constructor

CipherKey.fromList(
  1. List<int> key
)

Implementation

factory CipherKey.fromList(List<int> key) {
  return CipherKey._(key);
}