isEmpty method

bool isEmpty(
  1. List? list
)

Implementation

bool isEmpty(final List? list) => list == null || list.isEmpty;