copyWith method
SuggestedActionCustom
copyWith({
- String? name,
- FormattedText? title,
- FormattedText? description,
- String? url,
Implementation
SuggestedActionCustom copyWith({
String? name,
FormattedText? title,
FormattedText? description,
String? url,
}) => SuggestedActionCustom(
name: name ?? this.name,
title: title ?? this.title,
description: description ?? this.description,
url: url ?? this.url,
);