status property

Rx<RxStatus> status
final

RxStatus of the operation fetching.

May be:

  • status.isEmpty, meaning the operation was fetched and is not found.
  • status.isLoading, meaning the operation is being fetched.
  • status.isSuccess, meaning the operation is successfully fetched.

Implementation

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