HandleBar constructor

const HandleBar({
  1. Key? key,
  2. BoxDecoration? decoration,
  3. EdgeInsetsGeometry margin = const EdgeInsets.only(top: 8.0),
  4. VoidCallback? onPressed,
})

Implementation

const HandleBar({
  Key? key,
  this.decoration,
  this.margin = const EdgeInsets.only(
    top: 8.0,
  ),
  this.onPressed,
}) : super(key: key);