copyWith method

UserSupportInfo copyWith({
  1. FormattedText? message,
  2. String? author,
  3. int? date,
})

Implementation

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