copyWith method

FwStandardModelsFwApplicationUser copyWith({
  1. String? userName,
  2. String? password,
})

Implementation

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