Returns true if the Option is a None.
true
expect(isNone(none()), true); expect(isNone(some()), false);
bool isNone<T>(Option<T> option) => option._isNone;