RowPaddingButton constructor

RowPaddingButton({
  1. Key? key,
  2. double? leftRightPadding,
  3. double? height,
  4. double? cornerRadius,
  5. required ThemeBGType bgColorType,
  6. required String title,
  7. TextStyle? titleStyle,
  8. required void onPressed(),
})

Implementation

RowPaddingButton({
  Key? key,
  this.leftRightPadding,
  this.height,
  this.cornerRadius,
  required this.bgColorType,
  required this.title,
  this.titleStyle,
  required this.onPressed,
}) : super(key: key);