clearAll method

Future<bool> clearAll()

Used to reset ALL the database.

Before usage:

The data is completely erased. The space will be reclaimed

Return:

  • Will return true if all the room's has been cleaned.

Implementation

Future<bool> clearAll() async {
  return _controller.clearAllController();
}