To removes all elements in this set that do not meet a condition, use retainWhere. letters.retainWhere((element) => element.contains('C')); print(letters); // { ...
確定! 回上一頁