isNotNull property
bool
get
isNotNull
Check if the object is not null
Example: object.isNotNull // true
Implementation
bool get isNotNull => this != null;
Check if the object is not null
Example: object.isNotNull // true
bool get isNotNull => this != null;