AppBarSearchView constructor

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

    Implementation

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