FastAppSettingsBlocEvent.themeChanged constructor

FastAppSettingsBlocEvent.themeChanged(
  1. String theme
)

Constructor for the themeChanged event.

Implementation

FastAppSettingsBlocEvent.themeChanged(String theme)
    : super(
        type: FastAppSettingsBlocEventType.themeChanged,
        payload: FastAppSettingsBlocEventPayload(theme: theme),
      );