storeFakeUserEmailAndPassword function

Future<void> storeFakeUserEmailAndPassword(
  1. String email,
  2. String password
)

Implementation

Future<void> storeFakeUserEmailAndPassword(String email, String password) async {
  await SecureStorage.write(userEmailKey, email);
  await SecureStorage.write(userPasswordKey, password);
}