Sources/Compose/Component/Router/RouterOptions.swift

Summary

Maintainability
A
0 mins
Test Coverage
import Foundation

public struct RouterOptions {
    
    public var shouldClearWhenNotPresented : Bool = false
    
    public init(shouldClearWhenNotPresented : Bool = false) {
        self.shouldClearWhenNotPresented = shouldClearWhenNotPresented
    }
    
}