initAsync method

  1. @override
Future<void> initAsync()
override

The function that is called after opening the box. Must definitely wait

Implementation

@override
Future<void> initAsync() async {
  await initMigrations();
  await initExpiredSystem();
  super.initAsync();
}