selectionTristate property

bool? get selectionTristate

Implementation

bool? get selectionTristate => isAllSelected
    ? true
    : isSomeSelected
        ? null
        : false;