show method

Future<void> show([
  1. T? replacement
])

Implementation

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