copyWith method
Implementation
FwStandardModelsFwApplicationUser copyWith(
{String? userName, String? password}) {
return FwStandardModelsFwApplicationUser(
userName: userName ?? this.userName,
password: password ?? this.password);
}