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