IntOptions constructor

IntOptions(
  1. Map<int, String> items, {
  2. List<int>? hiddenValues,
  3. bool bitOperator = false,
  4. String missLabel = "未指定",
})

Implementation

IntOptions(
  this.items, {
  List<int>? hiddenValues,
  this.bitOperator = false,
  this.missLabel = "未指定",
}) : hiddenSet = hiddenValues?.toSet() ?? <int>{};