copyWith method

SetUserSupportInfo copyWith({
  1. int? userId,
  2. FormattedText? message,
})

Implementation

SetUserSupportInfo copyWith({
  int? userId,
  FormattedText? message,
}) =>
    SetUserSupportInfo(
      userId: userId ?? this.userId,
      message: message ?? this.message,
    );