CardObject.detailedIcon constructor

CardObject.detailedIcon(
  1. decorationPriority decorationVariant,
  2. String? cardLabel,
  3. String? cardBody,
  4. IconData? cardIcon,
  5. VoidCallback? cardAction,
)

Implementation

CardObject.detailedIcon(this.decorationVariant, this.cardLabel, this.cardBody,
    this.cardIcon, this.cardAction)
    : assert(cardLabel != '' &&
          cardBody != '' &&
          cardIcon != null &&
          cardAction != null);