pendingIslands property

List<BloomIslandInstance> get pendingIslands

All island instances currently awaiting hydration triggers.

Implementation

List<BloomIslandInstance> get pendingIslands =>
    _islands.where((i) => i.isPending).toList();