FastAppSettingsBlocEvent.primaryCurrencyCodeChanged constructor

FastAppSettingsBlocEvent.primaryCurrencyCodeChanged(
  1. String primaryCurrencyCode
)

Constructor for the primaryCurrencyCodeChanged event.

Implementation

FastAppSettingsBlocEvent.primaryCurrencyCodeChanged(
  String primaryCurrencyCode,
) : super(
        type: FastAppSettingsBlocEventType.primaryCurrencyCodeChanged,
        payload: FastAppSettingsBlocEventPayload(
          primaryCurrencyCode: primaryCurrencyCode,
        ),
      );