copyWith method

ReportSponsoredResultOptionRequired copyWith({
  1. String? title,
  2. List<ReportOption>? options,
})

Implementation

ReportSponsoredResultOptionRequired copyWith({
  String? title,
  List<ReportOption>? options,
}) => ReportSponsoredResultOptionRequired(
  title: title ?? this.title,
  options: options ?? this.options,
);