본문 바로가기

Dead Code/Flutter_Dart

[플러터] Prefer const with constant contructors

언제부터인가, 

습관적으로 const 키워드는 안쓰는데, 이런 에러가 난다. 

Prefer const with constant contructors

 

자동으로 추가되는 flutter_lints 때문이리라.

 

없애는 방법은?

아래와 같이 const 키워드를 붙이라고 밑줄이 가 있다면,

 

 

 

해당 파일 내에서 전체 없애기

 

import 이전에 아래와 같이 적어준다.

// ignore_for_file: prefer_const_constructors

 

 

 

특정 줄만 없애기

해당 라인 위에 아래와 같이 적어준다.

// ignore: prefer_const_constructors

 

 

 

새로운 기능이 있으면, stack over flow 가 아니라 설명서를 봐야하거늘 ㅉㅉ