accentColor method

CountryPickerBuilder accentColor(
  1. Color? color
)

Set the accent color

Implementation

CountryPickerBuilder accentColor(Color? color) {
  _themeData = _themeData.copyWith(accentColor: color);
  return this;
}