DeeplinklyPasteButton constructor

const DeeplinklyPasteButton({
  1. Key? key,
  2. double width = 140,
  3. double height = 44,
  4. void onPasted(
    1. bool handled
    )?,
  5. Widget? fallback,
  6. DeeplinklyPasteButtonDisplayMode displayMode = DeeplinklyPasteButtonDisplayMode.iconAndLabel,
  7. DeeplinklyPasteButtonCornerStyle cornerStyle = DeeplinklyPasteButtonCornerStyle.capsule,
  8. Color? backgroundColor,
  9. Color? foregroundColor,
})

Implementation

const DeeplinklyPasteButton({
  super.key,
  this.width = 140,
  this.height = 44,
  this.onPasted,
  this.fallback,
  this.displayMode = DeeplinklyPasteButtonDisplayMode.iconAndLabel,
  this.cornerStyle = DeeplinklyPasteButtonCornerStyle.capsule,
  this.backgroundColor,
  this.foregroundColor,
});