init method

  1. @override
void init(
  1. Uint8List password,
  2. Uint8List salt,
  3. int iterationCount
)
override

Implementation

@override
void init(Uint8List password, Uint8List salt, int iterationCount) {
  this.password = password;
  this.salt = salt;
  this.iterationCount = iterationCount;
}