withStatus method

ComponentId withStatus(
  1. ComponentIdStatus status
)

Copy this ComponentId with a new status.

Implementation

ComponentId withStatus(ComponentIdStatus status) => ComponentId(
      expiresAt: expiresAt,
      sessionStartTime: sessionStartTime,
      status: status,
      uniqueIdentifier: uniqueIdentifier,
      allowedUser: allowedUser,
    );