isDefined property

bool isDefined

True if Some of A else false

Implementation

bool get isDefined => fold(() => false, (_) => true);