countryOptions method

FxFieldOptions countryOptions(
  1. Widget countryFlag
)

Implementation

FxFieldOptions countryOptions(Widget countryFlag) {
  final hint = config.countryOptions.hint;
  return config.countryOptions.copyWith(
    hint: hint ?? theme.countryHint,
    prefixIcon: countryFlag,
  );
}