isEmptySet property

bool get isEmptySet

判断是否空集合

Implementation

bool get isEmptySet {
  return this == null || this!.isEmpty;
}