FastAppSettingsBlocEvent.secondaryCurrencyCodeChanged constructor

FastAppSettingsBlocEvent.secondaryCurrencyCodeChanged(
  1. String secondaryCurrencyCode
)

Constructor for the secondaryCurrencyCodeChanged event.

Implementation

FastAppSettingsBlocEvent.secondaryCurrencyCodeChanged(
  String secondaryCurrencyCode,
) : super(
        type: FastAppSettingsBlocEventType.secondaryCurrencyCodeChanged,
        payload: FastAppSettingsBlocEventPayload(
          secondaryCurrencyCode: secondaryCurrencyCode,
        ),
      );