RoundButtonBackground constructor

const RoundButtonBackground({
  1. Key? key,
  2. required Widget child,
  3. Color overlayColor = const Color(0x1F000000),
  4. double borderRadius = 20.0,
  5. EdgeInsets padding = const EdgeInsets.all(4.0),
})

Implementation

const RoundButtonBackground({
  Key? key,
  required this.child,
  this.overlayColor = const Color(0x1F000000),
  this.borderRadius = 20.0,
  this.padding = const EdgeInsets.all(4.0),
}) : super(key: key);