copyWith method
Implementation
UpdateStarRevenueStatus copyWith({
MessageSender? ownerId,
StarRevenueStatus? status,
}) => UpdateStarRevenueStatus(
ownerId: ownerId ?? this.ownerId,
status: status ?? this.status,
);
UpdateStarRevenueStatus copyWith({
MessageSender? ownerId,
StarRevenueStatus? status,
}) => UpdateStarRevenueStatus(
ownerId: ownerId ?? this.ownerId,
status: status ?? this.status,
);