PlexInfoSheetAction constructor

PlexInfoSheetAction({
  1. Key? key,
  2. required String label,
  3. OnActionPressed? onPressed,
  4. PlexButtonType actionType = PlexButtonType.text,
  5. Widget? icon,
  6. ButtonStyle? buttonStyle,
  7. FocusNode? focusNode,
})

Implementation

PlexInfoSheetAction({
  this.key,
  required this.label,
  this.onPressed,
  this.actionType = PlexButtonType.text,
  this.icon,
  this.buttonStyle,
  this.focusNode,
});