copyWith method
Implementation
Advertising copyWith({
  Map<String, dynamic>? schedule,
  String? podmessage,
  String? client,
  bool? debug,
  String? tag,
}) =>
    Advertising(
      schedule: schedule ?? this.schedule,
      podmessage: podmessage ?? this.podmessage,
      client: client ?? this.client,
      debug: debug ?? this.debug,
      tag: tag ?? this.tag,
    );