copyWith method

WebApiModulesAgentOrderCreatePoWorksheetSessionResponse copyWith({
  1. String? sessionId,
  2. int? status,
  3. bool? success,
  4. String? msg,
})

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);
}