SearchBarStyle constructor

const SearchBarStyle({
  1. Color backgroundColor = const Color.fromRGBO(142, 142, 147, .15),
  2. EdgeInsetsGeometry padding = const EdgeInsets.all(5.0),
  3. BorderRadius borderRadius = const BorderRadius.all(Radius.circular(5.0)),
})

Implementation

const SearchBarStyle(
    {this.backgroundColor = const Color.fromRGBO(142, 142, 147, .15),
    this.padding = const EdgeInsets.all(5.0),
    this.borderRadius: const BorderRadius.all(Radius.circular(5.0))});