CustomCardExpandible constructor

const CustomCardExpandible({
  1. Key? key,
  2. required bool expanded,
  3. required Function setExpanded,
  4. String textTitle = '',
  5. String textSubtitle = '',
  6. String textTrailing = '',
  7. String textTrailingBottom = '',
  8. Color? backgroundColor,
  9. Color? textColor,
})

Implementation

const CustomCardExpandible({
  super.key,
  required this.expanded,
  required this.setExpanded,
  this.textTitle = '',
  this.textSubtitle = '',
  this.textTrailing = '',
  this.textTrailingBottom = '',
  this.backgroundColor,
  this.textColor,
});