isListEmpty function

bool isListEmpty(
  1. List? value
)

Implementation

bool isListEmpty(List? value) {
  return (value == null) || (value.length == 0);
}