copyWith method
Implementation
AppLoadingControllerParams copyWith({
bool? visible,
bool? hasBlurBackground,
String? message,
}) {
return AppLoadingControllerParams(
visible: visible ?? this.visible,
hasBlurBackground: hasBlurBackground ?? this.hasBlurBackground,
message: message ?? this.message,
);
}