copyWith method
Implementation
UserSupportInfo copyWith({
FormattedText? message,
String? author,
int? date,
}) => UserSupportInfo(
message: message ?? this.message,
author: author ?? this.author,
date: date ?? this.date,
);
UserSupportInfo copyWith({
FormattedText? message,
String? author,
int? date,
}) => UserSupportInfo(
message: message ?? this.message,
author: author ?? this.author,
date: date ?? this.date,
);