AuthorizerCallback typedef
AuthorizerCallback =
AuthorizerResult Function(Statement action, String? tableName)
Authorizer callback. Invoked by Database.executeStmt for every dispatched statement; the second argument is the primary table the statement targets (or null when there is none, e.g. PRAGMA).
Implementation
typedef AuthorizerCallback = AuthorizerResult Function(
Statement action, String? tableName);