status property

Rx<RxStatus> status
final

Authorization status.

Can be:

  • status.isEmpty meaning that MyUser is unauthorized;
  • status.isLoading meaning that authorization data is being fetched from storage;
  • status.isLoadingMore meaning that MyUser is authorized according to the storage, but network request to the server is still in-flight;
  • status.isSuccess meaning successful authorization.

Implementation

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