truncate method

Future<void> truncate()

Implementation

Future<void> truncate() async {
  final db = await database;
  db.delete('roles');
}