XBtnTakePhoto constructor

XBtnTakePhoto({
  1. String? label,
  2. IconData? icon = Icons.add_a_photo,
  3. TextStyle? style,
  4. TextAlign? textAlign,
  5. Color? color,
  6. Color? colorbackground,
  7. @required dynamic onPressed()?,
  8. Widget? child,
  9. Uint8List? currentImageBytes,
})

Implementation

XBtnTakePhoto({
  this.label,
  this.icon = Icons.add_a_photo,
  this.style,
  this.textAlign,
  this.color,
  this.colorbackground,
  @required this.onPressed,
  this.child,
  this.currentImageBytes,
});