SettingView
struct SettingView : ViewThis view is show all the details related to mobile Lic and device imfo with app version and SDK version,It also displays cust ID
- 
                  
                  State property to hold the license information. DeclarationSwift @State var licenseInfo: LicenseInfo { get nonmutating set }
- 
                  
                  State property to control the visibility of the “Copied” text. DeclarationSwift @State var showCopiedText: Bool { get nonmutating set }
- 
                  
                  State property to hold the device ID. DeclarationSwift @State var deviceId: String { get nonmutating set }
- 
                  
                  State property to track the currently expanded section. DeclarationSwift @State private var expandedSection: Int { get nonmutating set }
- 
                  
                  Environment property to manage the presentation mode, used for back navigation. DeclarationSwift @Environment var presentationMode: Binding<PresentationMode> { get }
- 
                  
                  DeclarationSwift var body: some View { get }
- 
                  
                  Accordion section view. See moreDeclarationSwift struct AccordionSection<Content> : View where Content : View
- 
                  
                  Info row view. See moreDeclarationSwift struct InfoRow : View
- 
                  
                  bind license info to UI DeclarationSwift func bindLicenseInfo()
- 
                  
                  DeclarationSwift func bindDeviceId()
- 
                  
                  Setting Label View for Setting View See moreDeclarationSwift struct SettingLabelView : View
