CardDragComponent constructor

CardDragComponent({
  1. required String? titleText,
  2. required String? subtitleText,
  3. IconData? iconLeft,
  4. String? labelCancel,
  5. String? labelConfirm,
  6. double? borderRadius,
  7. double? elevation,
  8. Function? onTap,
  9. Key? key,
})

Implementation

CardDragComponent(
    {required this.titleText,
    required this.subtitleText,
    this.iconLeft,
    this.labelCancel,
    this.labelConfirm,
    this.borderRadius,
    this.elevation,
    this.onTap,
    Key? key})
    : super(key: key);