FindOptions constructor

FindOptions({
  1. String? findTerm,
  2. bool? shouldHighlightAllMatches,
  3. bool? shouldMatchCase,
  4. bool? shouldMatchWord,
  5. bool? suppressDefaultFindDialog,
})

Implementation

FindOptions({
  this.findTerm,
  this.shouldHighlightAllMatches,
  this.shouldMatchCase,
  this.shouldMatchWord,
  this.suppressDefaultFindDialog,
});