show method
Implementation
Future<void> show([T? replacement]) async {
if (replacement != null) {
this.originalWidget = replacement;
}
await this.pCurrentWidget.set(this.originalWidget);
}
Future<void> show([T? replacement]) async {
if (replacement != null) {
this.originalWidget = replacement;
}
await this.pCurrentWidget.set(this.originalWidget);
}