isNullOrUndefined function
Checks if the value is null or undefined
Implementation
bool isNullOrUndefined(dynamic value) {
return value == null;
}
Checks if the value is null or undefined
bool isNullOrUndefined(dynamic value) {
return value == null;
}