CountryListTile constructor

const CountryListTile({
  1. Key? key,
  2. required Country country,
  3. CountryListDialogTheme dialogTheme = const CountryListDialogTheme(),
})

Implementation

const CountryListTile({
  Key? key,
  required this.country,
  this.dialogTheme = const CountryListDialogTheme(),
}) : super(key: key);