isBlank function

bool? isBlank(
  1. dynamic value
)

Implementation

bool? isBlank(dynamic value) {
  return _isEmpty(value);
}