copyWith method

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

Implementation

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