26 lines
600 B
Swift
Raw Normal View History

2022-10-18 11:44:08 +02:00
//
// FindInteractionSettings.swift
// flutter_inappwebview
//
// Created by Lorenzo Pichilli on 07/10/22.
//
import Foundation
2023-12-21 08:07:57 +01:00
public class FindInteractionSettings: ISettings<FindInteractionController> {
2022-10-18 11:44:08 +02:00
override init(){
super.init()
}
override func parse(settings: [String: Any?]) -> FindInteractionSettings {
let _ = super.parse(settings: settings)
return self
}
override func getRealSettings(obj: FindInteractionController?) -> [String: Any?] {
let realSettings: [String: Any?] = toMap()
return realSettings
}
}