CountryListTile constructor

const CountryListTile({
  1. Key? key,
  2. required Country country,
  3. required Languages language,
  4. DialogThemeData dialogTheme = const DialogThemeData(),
  5. Names displayName = Names.common,
})

Implementation

const CountryListTile({
  super.key,
  required this.country,
  required this.language,
  this.dialogTheme = const DialogThemeData(),
  this.displayName = Names.common,
});