ButtonChildWidget constructor

ButtonChildWidget({
  1. Key? key,
  2. required String title,
  3. double? width,
  4. double? height,
  5. TextStyle? titleStyle,
  6. ButtonImagePosition? imagePosition,
  7. Image? imageWidget,
  8. double imageTitleGap = 5,
})

Implementation

ButtonChildWidget({
  Key? key,
  required this.title,
  this.width,
  this.height,
  this.titleStyle,
  this.imagePosition,
  this.imageWidget,
  this.imageTitleGap = 5,
}) : super(key: key);