notificationAuthParams method

void notificationAuthParams(
  1. String? user,
  2. String? password,
  3. String authType
)

Authentication parameters for change notification

Implementation

void notificationAuthParams(String? user, String? password, String authType) {
  _user = user;
  _password = password;
  _authType = authType;
}