copyWith method

Implementation

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