isNullOrEmpty function

bool isNullOrEmpty(
  1. Object? any
)

Implementation

bool isNullOrEmpty(Object? any) {
  return NUIDataUtil.isNullOrEmpty(any);
}