copyWith method

Advertising copyWith({
  1. Map<String, dynamic>? schedule,
  2. String? podmessage,
  3. String? client,
  4. bool? debug,
  5. String? tag,
})

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,
    );