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