show method

  1. @override
Future<void> show({
  1. required BuildContext context,
  2. required String screen,
  3. Config? config,
  4. String? type,
  5. bool showNextAndPreviousButtons = false,
})
override

Implementation

@override
Future<void> show({
  required BuildContext context,
  required String screen,
  Config? config,
  String? type,
  bool showNextAndPreviousButtons = false,
}) async {
  config ??= CONFIG!;
  doShow(
    context: context,
    config: config,
    screen: screen,
    type: type,
    showNextAndPreviousButtons: showNextAndPreviousButtons,
  );
}