MTGSymbol constructor

const MTGSymbol({
  1. required String english,
  2. required String image,
  3. String? looseVariant,
  4. double? manaValue,
})

Creates a new MTGSymbol instance. looseVariant and manaValue are optional because not all MTGSymbol instances have them.

Implementation

const MTGSymbol({
  required this.english,
  required this.image,
  this.looseVariant,
  this.manaValue,
});