isNotNull method

bool isNotNull(
  1. dynamic object
)

Implementation

bool isNotNull(dynamic object) {
  return object != null ? true : false;
}