Find constructor

Find({
  1. int? allowChildren,
  2. int? expandable,
  3. int? leaf,
  4. String? id,
  5. String? text,
  6. Object? context,
})

Returns a new Find instance.

Implementation

Find({
  this.allowChildren,
  this.expandable,
  this.leaf,
  this.id,
  this.text,
  this.context,
});