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