CardSymbol constructor

const CardSymbol({
  1. required String symbol,
  2. String? looseVariant,
  3. required String english,
  4. required bool transposable,
  5. required bool representsMana,
  6. double? cmc,
  7. required bool appearsInManaCosts,
  8. required bool funny,
  9. required List<Color> colors,
  10. List<String>? gathererAlternates,
  11. Uri? svgUri,
})

Constructs a CardSymbol by settings its properties.

Implementation

const CardSymbol({
  required this.symbol,
  this.looseVariant,
  required this.english,
  required this.transposable,
  required this.representsMana,
  this.cmc,
  required this.appearsInManaCosts,
  required this.funny,
  required this.colors,
  this.gathererAlternates,
  this.svgUri,
});