hasCheckBoxBrother method

bool hasCheckBoxBrother()

检查自己的兄弟结点是否存在 checkbox 类型。

Implementation

bool hasCheckBoxBrother() {
  int? count = parent?.children
      .where((f) => f.filterType == SelectionFilterType.checkbox)
      .length;
  return count == null ? false : count > 0;
}