copyWith method
Creates a copy of this widget configuration with specified overrides.
Implementation
DialogWidgets copyWith({
Widget Function(String message, ProImageEditorConfigs configs)?
loadingDialog,
}) {
return DialogWidgets(loadingDialog: loadingDialog ?? this.loadingDialog);
}