invoke

operator fun invoke(block: SQLiteStorageConfig.() -> Unit = {}): SQLOathStorage

Invoke operator to create SQLOathStorage with DSL syntax.

Example usage:

val storage = SQLOathStorage {
context = applicationContext
databaseName = "custom_oath.db"
allowDestructiveRecovery = true
}