ShowDialog.component constructor
ShowDialog.component(
- ComponentHandle? component, {
- Map<
String, Object?> ? params, - bool nonDismissible = false,
Implementation
ShowDialog.component(
this.component, {
Map<String, Object?>? params,
this.nonDismissible = false,
}) : kind = ShowDialogKind.component,
title = null,
message = null,
dismissText = null,
params = params == null ? const {} : Map.unmodifiable(params);