generateKeyFromPassword method Null safety

Future<String?> generateKeyFromPassword (
  1. String password,
  2. String salt
)

Gets a key from the given password and salt. salt can be generated with generateSalt while password is usually provided by the user.

Implementation

Future<String?> generateKeyFromPassword(String password, String salt);