Item constructor

const Item({
  1. Key? key,
  2. Country? country,
  3. bool? showFlag,
  4. bool? useEmoji,
  5. TextStyle? textStyle,
  6. bool withCountryNames = false,
  7. double? leadingPadding = 12,
  8. bool trailingSpace = true,
})

Implementation

const Item({
  Key? key,
  this.country,
  this.showFlag,
  this.useEmoji,
  this.textStyle,
  this.withCountryNames = false,
  this.leadingPadding = 12,
  this.trailingSpace = true,
}) : super(key: key);