DialogPage<T> constructor

const DialogPage<T>({
  1. required Widget child,
  2. LocalKey? key,
  3. String? name,
  4. Object? arguments,
  5. String? restorationId,
})

Creates a DialogPage.

Implementation

const DialogPage({
  required this.child,
  LocalKey? key,
  String? name,
  Object? arguments,
  String? restorationId,
}) : super(
        key: key,
        name: name,
        arguments: arguments,
        restorationId: restorationId,
      );