reveal static method

Future<void> reveal()

Implementation

static Future<void> reveal() async {
  final nav = getObject<INavigationHelpers>();
  return nav.openModal(
    builder: (context) => const MilestoneIntroModalScreen(),
    routeName: 'modal:milestone_introduction',
    eventProps: {},
    isDismissible: false,
    modalHandleBuilder: (context) => const SizedBox.shrink(),
  );
}