AppBarSearchView constructor

const AppBarSearchView({
  1. Key? key,
  2. String? hintText,
  3. dynamic onTap()?,
  4. bool enabled = true,
  5. Widget? leading,
})

Implementation

const AppBarSearchView({
  Key? key,
  this.hintText,
  this.onTap,
  this.enabled = true,
  this.leading,
}) : super(key: key);