CardItemWidget constructor

const CardItemWidget({
  1. Color? backgroundColor,
  2. IconData? iconData,
  3. int weight = 1,
  4. double? width,
  5. double? height,
  6. String? name,
  7. String? localImage,
  8. required Widget child,
  9. SuggestionItem? el,
})

Implementation

const CardItemWidget(
    {this.backgroundColor,
    this.iconData,
    this.weight = 1,
    this.width,
    this.height,
    this.name,
    this.localImage,
    required this.child,
    this.el});