XBtnTakePhoto constructor

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

Implementation

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