PlainAuthentication constructor

PlainAuthentication(
  1. String? userName,
  2. String? password
)

Implementation

PlainAuthentication(String? userName, String? password)
    : super(userName, MailAuthentication._typePlain) {
  this.password = password;
}