LeftImageButton constructor

const LeftImageButton({
  1. Key? key,
  2. double? width,
  3. double? height,
  4. required String buttonText,
  5. required Image buttonImageView,
  6. GestureTapCallback? onTap,
  7. int? maxLines,
})

Implementation

const LeftImageButton({
  Key? key,
  this.width,
  this.height,
  required this.buttonText,
  required this.buttonImageView,
  this.onTap,
  this.maxLines,
}) : super(key: key);