isSet method

bool isSet(
  1. AsyncSlotHandle handle
)

Whether a computed currently carries a resolved value.

Implementation

bool isSet(AsyncSlotHandle<dynamic> handle) =>
    handle.state == AsyncSlotState.resolved;