copyWith method

LoadingOptions copyWith({
  1. Widget? custom,
  2. LoadingStyle? style,
  3. ModalWindowsOptions? options,
})

Implementation

LoadingOptions copyWith({
  Widget? custom,
  LoadingStyle? style,
  ModalWindowsOptions? options,
}) =>
    LoadingOptions(
        custom: custom ?? this.custom,
        style: style ?? this.style,
        options: options ?? this.options);