copyWith method
Implementation
ItemApplicationListUserAuth copyWith(
{String? userId, String? fiUsernameHash}) {
return ItemApplicationListUserAuth(
userId: userId ?? this.userId,
fiUsernameHash: fiUsernameHash ?? this.fiUsernameHash);
}