copyWith method

ItemApplicationListUserAuth copyWith({
  1. String? userId,
  2. String? fiUsernameHash,
})

Implementation

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