FlutterSmartDialog constructor

const FlutterSmartDialog({
  1. Key? key,
  2. required Widget? child,
})

Creates a FlutterSmartDialog that wraps the application content.

The child parameter is required and represents the main app UI.

Implementation

const FlutterSmartDialog({
  super.key,
  required this.child,
})  : assert(child != null);