encryptPassword method

Future encryptPassword(
  1. ApiClient apiClient
)

Implementation

Future encryptPassword(ApiClient apiClient) async {
  if (_password != null) {
    _encryptedPassword = await apiClient.encryptPassword(_password!);
    _password = null;
  }
}