show abstract method

void show({
  1. required String id,
  2. String? title,
  3. String? content,
  4. List<Widget>? actions,
  5. DialogPriority priority,
  6. bool isFixed,
  7. bool canBeClosed()?,
  8. Widget? customDialog,
})

Implementation

void show({
  required String id,
  String? title,
  String? content,
  List<Widget>? actions,
  DialogPriority priority,
  bool isFixed,
  bool Function()? canBeClosed,
  Widget? customDialog,
});