copyWith method
Implementation
WebApiModulesAgentOrderCreatePoWorksheetSessionResponse copyWith({
String? sessionId,
int? status,
bool? success,
String? msg,
}) {
return WebApiModulesAgentOrderCreatePoWorksheetSessionResponse(
sessionId: sessionId ?? this.sessionId,
status: status ?? this.status,
success: success ?? this.success,
msg: msg ?? this.msg,
);
}