isNullOrEmpty static method

bool isNullOrEmpty(
  1. dynamic v
)

Implementation

static bool isNullOrEmpty(v) {
  return v == null || v == "";
}