copyWith method
Implementation
WebApiModulesHomeActiveLinkPurchaseOrderApprovalPurchaseOrderApprovalActivity
copyWith({
String? username,
String? activityDescription,
String? note,
DateTime? performedAt,
String? timeAgo,
}) {
return WebApiModulesHomeActiveLinkPurchaseOrderApprovalPurchaseOrderApprovalActivity(
username: username ?? this.username,
activityDescription: activityDescription ?? this.activityDescription,
note: note ?? this.note,
performedAt: performedAt ?? this.performedAt,
timeAgo: timeAgo ?? this.timeAgo,
);
}