CardFace constructor

const CardFace({
  1. String? artist,
  2. String? artistId,
  3. double? cmc,
  4. List<Color>? colorIndicator,
  5. List<Color>? colors,
  6. String? flavorName,
  7. String? flavorText,
  8. String? illustrationId,
  9. required ImageUris? imageUris,
  10. Layout? layout,
  11. String? loyalty,
  12. required String manaCost,
  13. required String name,
  14. String? oracleId,
  15. String? oracleText,
  16. String? power,
  17. String? printedName,
  18. String? printedText,
  19. String? printedTypeLine,
  20. String? toughness,
  21. String? typeLine,
  22. String? watermark,
})

Constructs a CardFace by settings its properties.

Implementation

const CardFace({
  this.artist,
  this.artistId,
  this.cmc,
  this.colorIndicator,
  this.colors,
  this.flavorName,
  this.flavorText,
  this.illustrationId,
  required this.imageUris,
  this.layout,
  this.loyalty,
  required this.manaCost,
  required this.name,
  this.oracleId,
  this.oracleText,
  this.power,
  this.printedName,
  this.printedText,
  this.printedTypeLine,
  this.toughness,
  this.typeLine,
  this.watermark,
});