CountryFlag constructor

const CountryFlag({
  1. Key? key,
  2. double width = 40.0,
  3. double height = 25.0,
  4. double borderRadius = 2.0,
  5. required String countryId,
})

Implementation

const CountryFlag({
  Key? key,
  this.width = 40.0,
  this.height = 25.0,
  this.borderRadius = 2.0,
  required this.countryId,
}) : super(key: key);