copyWith method
Returns a copy with the given fields replaced.
Implementation
AttExplainerContent copyWith({
String? title,
String? description,
String? footnote,
String? continueLabel,
}) => AttExplainerContent(
title: title ?? this.title,
description: description ?? this.description,
footnote: footnote ?? this.footnote,
continueLabel: continueLabel ?? this.continueLabel,
);