copyWith method

Implementation

WebApiModulesAgentOrderUpdatePoWorksheetSessionResponse copyWith(
    {int? status, bool? success, String? msg}) {
  return WebApiModulesAgentOrderUpdatePoWorksheetSessionResponse(
      status: status ?? this.status,
      success: success ?? this.success,
      msg: msg ?? this.msg);
}