isNone method

Future<bool> isNone()

Returns true if the option is a None value.

Implementation

Future<bool> isNone() => then((v) => v.isNone());