flutter error2 [Flutter] The method ‘+’ can’t be unconditionally invoked bacause the receiver can be ‘null’ 에러 메시지 에러 원인 null-satefy를 적용한 dart 문법에서 연산자 += 등 연산자를 줄인 형식이 허용되지 않아 발생됨 해결 방법 /// BASAL 총 값 if(basalList!.length > 0) { basalList!.forEach((e) { double value = e.basalAmt as double; this.totBasalValue = this.totBasalValue !+ value; }); } 값을 받을 변수를 초기화한 후 필요한 연산자를 이용해 값을 대입 아래와 같이 적용 후 사용하기 double num1 = 10; double num2 = 20; double? tot; tot += num1; // 사용 X tot += num2 // 사용 X tot = tot !+ num.. 2022. 3. 8. [Flutter] The return type ‘num’ isn’t a ‘T’, as required by the closure’s context. 에러 해당 코드 /// 공통 피커의 아이템 값 목록 생성 List generatePickerValues( {required T start, required T end, num interval = 1, int decimalPoint = 2}) { assert(start != end); assert(interval > 0); correctionValue(num value) => floatingPointErrorCorrectionValue(value, decimalPoint: decimalPoint); final range = correctionValue(end - start); final step = range.abs() ~/ interval; return List.generate(step + 1, (i) .. 2022. 2. 23. 이전 1 다음