copyWith method

AppLoadingControllerParams copyWith({
  1. bool? visible,
  2. bool? hasBlurBackground,
  3. String? message,
})

Implementation

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