copyWith method
Implementation
WebApiModulesAgentPurchaseOrderPOMessage copyWith({
String? tag,
String? message,
String? textColor,
String? backgroundColor,
bool? preventReceive,
}) {
return WebApiModulesAgentPurchaseOrderPOMessage(
tag: tag ?? this.tag,
message: message ?? this.message,
textColor: textColor ?? this.textColor,
backgroundColor: backgroundColor ?? this.backgroundColor,
preventReceive: preventReceive ?? this.preventReceive,
);
}