OnDatabaseOpenFn typedef

OnDatabaseOpenFn = FutureOr<void> Function(Database db)

Prototype of the function called when the database is open.

Post initialization should happen here.

Implementation

typedef OnDatabaseOpenFn = FutureOr<void> Function(Database db);