isNull property

  1. @override
bool isNull
inherited

Whether or not the underlying value is null

Implementation

@override
bool get isNull => (_$isNullComputed ??=
        Computed<bool>(() => super.isNull, name: 'SingleValueBase.isNull'))
    .value;