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