isLoaded property

bool get isLoaded

Implementation

bool get isLoaded => !(_loading ?? false);
set isLoaded (bool value)

Implementation

set isLoaded(bool value) => _loading = !value;