deleteAll method

Future<void> deleteAll({
  1. bool force = false,
})

Deletes all Instances, cleaning the memory and closes any open controllers (DisposableInterface).

  • force Will delete the Instances even if marked as permanent.

Implementation

Future<void> deleteAll({bool force = false}) async =>
    GetInstance().deleteAll(force: force);