isDataLoaded property

bool get isDataLoaded

Memory-efficient method to check if data is loaded without triggering load

Implementation

bool get isDataLoaded => _countries != null && _states != null && _cities != null;