status property

Rx<RxStatus> status
final

Status of the chat fetching.

May be:

  • status.isLoading, meaning chat is being fetched from the service.
  • status.isEmpty, meaning chat with specified id was not found.
  • status.isSuccess, meaning chat is successfully fetched.

Implementation

final Rx<RxStatus> status = Rx<RxStatus>(RxStatus.loading());