CardData constructor

CardData({
  1. String? id,
  2. String? type,
  3. List<BlockData>? blockList,
  4. String? cardClass,
  5. BlockData? topBanner,
  6. BlockData? bottomBanner,
  7. Map<String, dynamic>? extras,
})

Implementation

CardData(
    {this.id,
    this.type,
    this.blockList,
    this.cardClass,
    this.topBanner,
    this.bottomBanner,
    this.extras});