copyWith method
CheckDataEntity
copyWith({ - String? checkStep,
- String? checkCode,
- String? check,
- String? value,
- String? battery,
- String? temp,
- String? message,
- String? suggestion,
- String? code,
- String? press,
- String? diastolic,
- String? systolic,
- String? heartAnomaly,
- String? pulse,
- String? heart,
- String? glu,
- String? ma,
- String? ca,
- String? sg,
- String? leu,
- String? pro,
- String? nit,
- String? bld,
- String? ubg,
- String? bil,
- String? ket,
- String? vc,
- String? ph,
- String? cr,
- String? tg,
- String? tc,
- String? ldl,
- String? hdl,
- String? tc_hdl,
- String? spoz,
- String? pi,
- String? prBpm,
- String? pefPredict,
- String? fef50Predict,
- String? fef75Predict,
- String? fev1Predict,
- String? fev0,
- String? fef2575Predict,
- String? fvcPredict,
- String? fef25Predict,
- String? fev1FvcPredict,
- String? fev1Fvc,
- String? fef50,
- String? fef75,
- String? fev1,
- String? fvc,
- String? fef25,
- String? fef2575,
- String? pef,
- String? speed,
- String? point,
- String? time,
- String? capacity,
- String? seq,
- String? isLeadOff,
- String? rr,
- String? heartRate,
- String? temperature,
- String? ecgData,
- String? filePath,
- String? hasTime,
- String? progress,
- String? length,
- String? countNum,
})
Implementation
CheckDataEntity copyWith({
String? checkStep,
String? checkCode,
String? check,
String? value,
String? battery,
String? temp,
String? message,
String? suggestion,
String? code,
String? press,
String? diastolic,
String? systolic,
String? heartAnomaly,
String? pulse,
String? heart,
String? glu,
String? ma,
String? ca,
String? sg,
String? leu,
String? pro,
String? nit,
String? bld,
String? ubg,
String? bil,
String? ket,
String? vc,
String? ph,
String? cr,
String? tg,
String? tc,
String? ldl,
String? hdl,
String? tc_hdl,
String? spoz,
String? pi,
String? prBpm,
String? pefPredict,
String? fef50Predict,
String? fef75Predict,
String? fev1Predict,
String? fev0,
String? fef2575Predict,
String? fvcPredict,
String? fef25Predict,
String? fev1FvcPredict,
String? fev1Fvc,
String? fef50,
String? fef75,
String? fev1,
String? fvc,
String? fef25,
String? fef2575,
String? pef,
String? speed,
String? point,
String? time,
String? capacity,
String? seq,
String? isLeadOff,
String? rr,
String? heartRate,
String? temperature,
String? ecgData,
String? filePath,
String? hasTime,
String? progress,
String? length,
String? countNum,
}) {
return CheckDataEntity()
..checkStep = checkStep ?? this.checkStep
..checkCode = checkCode ?? this.checkCode
..check = check ?? this.check
..value = value ?? this.value
..battery = battery ?? this.battery
..temp = temp ?? this.temp
..message = message ?? this.message
..suggestion = suggestion ?? this.suggestion
..code = code ?? this.code
..press = press ?? this.press
..diastolic = diastolic ?? this.diastolic
..systolic = systolic ?? this.systolic
..heartAnomaly = heartAnomaly ?? this.heartAnomaly
..pulse = pulse ?? this.pulse
..heart = heart ?? this.heart
..glu = glu ?? this.glu
..ma = ma ?? this.ma
..ca = ca ?? this.ca
..sg = sg ?? this.sg
..leu = leu ?? this.leu
..pro = pro ?? this.pro
..nit = nit ?? this.nit
..bld = bld ?? this.bld
..ubg = ubg ?? this.ubg
..bil = bil ?? this.bil
..ket = ket ?? this.ket
..vc = vc ?? this.vc
..ph = ph ?? this.ph
..cr = cr ?? this.cr
..tg = tg ?? this.tg
..tc = tc ?? this.tc
..ldl = ldl ?? this.ldl
..hdl = hdl ?? this.hdl
..tc_hdl = tc_hdl ?? this.tc_hdl
..spoz = spoz ?? this.spoz
..pi = pi ?? this.pi
..prBpm = prBpm ?? this.prBpm
..pefPredict = pefPredict ?? this.pefPredict
..fef50Predict = fef50Predict ?? this.fef50Predict
..fef75Predict = fef75Predict ?? this.fef75Predict
..fev1Predict = fev1Predict ?? this.fev1Predict
..fev0 = fev0 ?? this.fev0
..fef2575Predict = fef2575Predict ?? this.fef2575Predict
..fvcPredict = fvcPredict ?? this.fvcPredict
..fef25Predict = fef25Predict ?? this.fef25Predict
..fev1FvcPredict = fev1FvcPredict ?? this.fev1FvcPredict
..fev1Fvc = fev1Fvc ?? this.fev1Fvc
..fef50 = fef50 ?? this.fef50
..fef75 = fef75 ?? this.fef75
..fev1 = fev1 ?? this.fev1
..fvc = fvc ?? this.fvc
..fef25 = fef25 ?? this.fef25
..fef2575 = fef2575 ?? this.fef2575
..pef = pef ?? this.pef
..speed = speed ?? this.speed
..point = point ?? this.point
..time = time ?? this.time
..capacity = capacity ?? this.capacity
..seq = seq ?? this.seq
..isLeadOff = isLeadOff ?? this.isLeadOff
..rr = rr ?? this.rr
..heartRate = heartRate ?? this.heartRate
..temperature = temperature ?? this.temperature
..ecgData = ecgData ?? this.ecgData
..filePath = filePath ?? this.filePath
..hasTime = hasTime ?? this.hasTime
..progress = progress ?? this.progress
..length = length ?? this.length
..countNum = countNum ?? this.countNum;
}