CountryBox constructor

CountryBox({
  1. double? horizontalCountryPadding = 16,
  2. double? boxHeight = 20,
  3. double? imageWidth = 20,
  4. double? imageHeight = 30,
  5. Decoration? boxDecoration,
  6. bool showCountryDialCode = true,
  7. bool showCountryFlag = true,
  8. bool showCountryName = false,
})

Implementation

CountryBox({
  this.horizontalCountryPadding = 16,
  this.boxHeight = 20,
  this.imageWidth = 20,
  this.imageHeight = 30,
  this.boxDecoration,
  this.showCountryDialCode = true,
  this.showCountryFlag = true,
  this.showCountryName = false,
});