status property
final
Authorization status.
Can be:
status.isEmpty
meaning thatMyUser
is unauthorized;status.isLoading
meaning that authorization data is being fetched from storage;status.isLoadingMore
meaning thatMyUser
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());