BoolOptions constructor

const BoolOptions({
  1. Set<String> truthy = const {'true', '1', 'yes', 'y', 'on', 'ok', 't'},
  2. Set<String> falsy = const {'false', '0', 'no', 'n', 'off', 'f'},
  3. bool numericPositiveIsTrue = true,
})

Creates a new BoolOptions.

Implementation

const BoolOptions({
  this.truthy = const {'true', '1', 'yes', 'y', 'on', 'ok', 't'},
  this.falsy = const {'false', '0', 'no', 'n', 'off', 'f'},
  this.numericPositiveIsTrue = true,
});