copyWith method

Adbreak copyWith({
  1. String? offset,
  2. String? tag,
})

Implementation

Adbreak copyWith({
  String? offset,
  String? tag,
}) =>
    Adbreak(
      offset: offset ?? this.offset,
      tag: tag ?? this.tag,
    );