ActionButtonStyle constructor

const ActionButtonStyle({
  1. Color inactiveBgColor = const Color(0xff3D3D43),
  2. Color activeBgColor = Colors.white,
  3. Color inactiveIconColor = Colors.white,
  4. Color activeIconColor = Colors.black,
  5. ShapeBorder shape = const CircleBorder(),
})

Implementation

const ActionButtonStyle(
    {this.inactiveBgColor = const Color(0xff3D3D43),
    this.activeBgColor = Colors.white,
    this.inactiveIconColor = Colors.white,
    this.activeIconColor = Colors.black,
    this.shape = const CircleBorder()});