show method

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

Implementation

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