copyWith method
Copies this authentication with the given values
Implementation
PlainAuthentication copyWith({String? userName, String? password}) =>
PlainAuthentication(userName ?? this.userName, password ?? this.password);
Copies this authentication with the given values
PlainAuthentication copyWith({String? userName, String? password}) =>
PlainAuthentication(userName ?? this.userName, password ?? this.password);