isNone property

bool get isNone

Whether this option is None.

const option = None<int>();
final missing = option.isNone; // true

Implementation

bool get isNone => !isSome;