QueryText constructor

QueryText({
  1. String? query,
  2. String? suggestion,
  3. String? placeholder,
})

Implementation

QueryText({
  String? query,
  String? suggestion,
  this.placeholder,
})  : _query = query,
      _suggestion = suggestion;