copyWith method

UserSupportInfo copyWith({
  1. FormattedText? message,
  2. String? author,
  3. int? date,
  4. dynamic extra,
  5. int? clientId,
})

Implementation

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