isNotNullable property

bool isNotNullable

The inverse of isNullable

final String notEmpty = 'Not Empty';

notEmpty.isNotNullable -> true;

Implementation

bool get isNotNullable => !isNullable;