isNullOrEmptyList static method

bool isNullOrEmptyList(
  1. List value
)

Implementation

static bool isNullOrEmptyList(List value) => value == null || value.isEmpty;