merge method

LoadingOptions merge([
  1. LoadingOptions? options
])

Implementation

LoadingOptions merge([LoadingOptions? options]) => LoadingOptions(
    custom: options?.custom ?? custom,
    style: options?.style ?? style,
    options: options?.options ?? this.options);