FastAppSettingsBlocEvent.countryCodeChanged constructor

FastAppSettingsBlocEvent.countryCodeChanged(
  1. String? countryCode
)

Constructor for the countryCodeChanged event.

Implementation

FastAppSettingsBlocEvent.countryCodeChanged(String? countryCode)
    : super(
        type: FastAppSettingsBlocEventType.countryCodeChanged,
        payload: FastAppSettingsBlocEventPayload(countryCode: countryCode),
      );