init method

Future<void> init()

Opens the SQLite database and prepares this queue table.

Implementation

Future<void> init() async {
  _database = await DatabaseService.init(tableName);
}