convert method

  1. @override
Uint8List convert(
  1. String password
)
override

Return a byte encoded representation of the passed in password.

  • param password the characters to encode.

Implementation

@override
Uint8List convert(String password) => utf8.encode(password).toUint8List();