copyWith method
Implementation
WebApiModulesAgentOrderOrderMessage copyWith(
{String? tag,
String? message,
bool? preventCheckOut,
String? backgroundColor}) {
return WebApiModulesAgentOrderOrderMessage(
tag: tag ?? this.tag,
message: message ?? this.message,
preventCheckOut: preventCheckOut ?? this.preventCheckOut,
backgroundColor: backgroundColor ?? this.backgroundColor);
}