isNotNull function

bool isNotNull(
  1. dynamic params
)

Implementation

bool isNotNull(params) {
  return params != null && params != '';
}