init method

Future<void> init()

Initialize controller — restores last page from storage.

Implementation

Future<void> init() async {
  final lastPage = await QuranMetadata.instance.getLastPage();
  currentPage.value = lastPage.clamp(1, 604);
}