canLoginRoom property

bool get canLoginRoom

Whether the configuration is complete for automatic room login.

Returns true if roomID, userID, and userName are all provided and not empty.

Implementation

bool get canLoginRoom =>
    (roomID.isNotEmpty) && (userID.isNotEmpty) && (userName.isNotEmpty);