show method

void show()

Implementation

void show() {
  if (!_showing) {
    _showing = true;
    AtLocationNotificationListener()
        .navKey
        .currentState!
        .push(CustomPopupRoutes(
            pageBuilder: (_, __, ___) {
              print('building loader');
              return Center(
                child: CircularProgressIndicator(),
              );
            },
            barrierDismissible: false))
        .then((_) {});
  }
}