copyWith method

AuthRepositoryState copyWith({
  1. AuthUserVO? authUser,
  2. DateTime? lastUpdatedClaims,
})

Implementation

AuthRepositoryState copyWith({
  AuthUserVO? authUser,
  DateTime? lastUpdatedClaims,
}) {
  return AuthRepositoryState(
    authUser: authUser ?? this.authUser,
  );
}