Files
ios/BitwardenKit/UI/Platform/DebugMenu/DebugMenuState.swift
2026-03-04 19:28:58 +00:00

11 lines
291 B
Swift

// MARK: - DebugMenuState
/// The state used to present the `DebugMenuView`.
///
struct DebugMenuState: Equatable, Sendable {
/// The current feature flags supported.
var featureFlags: [DebugMenuFeatureFlag] = []
/// A toast message to show in the view.
var toast: Toast?
}