FlagImage constructor

const FlagImage({
  1. Key? key,
  2. required String countryCode,
  3. double width = 32,
  4. double height = 24,
})

Implementation

const FlagImage({
  super.key,
  required this.countryCode,
  this.width = 32,
  this.height = 24,
});