CountryConfig constructor
CountryConfig({
- bool noFlag = false,
- double flagSize = 25,
- bool flatFlag = false,
- Decoration? decoration,
- TextStyle textStyle = const TextStyle(color: Colors.black, fontSize: 16, fontWeight: FontWeight.w500),
Implementation
CountryConfig({
this.noFlag = false,
this.flagSize = 25,
this.flatFlag = false,
Decoration? decoration,
this.textStyle = const TextStyle(
color: Colors.black, fontSize: 16, fontWeight: FontWeight.w500),
}) : decoration = decoration ??
BoxDecoration(
border: Border.all(width: 2, color: const Color(0xFF3f4046)),
borderRadius: BorderRadius.circular(8),
);