copyWith method

CDNConfigOptions copyWith({
  1. String? cdnBaseUrl,
  2. String? configPath,
})

Implementation

CDNConfigOptions copyWith({
  String? cdnBaseUrl,
  String? configPath,
}) {
  return CDNConfigOptions(
    cdnBaseUrl: cdnBaseUrl ?? this.cdnBaseUrl,
    configPath: configPath ?? this.configPath,
  );
}