show method
Future<void>
show({
- required BuildContext context,
- required String screen,
- Config? config,
- String? type,
- 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,
);
}