지금까지 Flutter를 보면서 계속 나와 있던 파란줄.파란줄에 마우스를 올려다보면 다음과 같은 안내문구가 나온다:Use 'const' with the constructor to improve performance.Try adding the 'const' keyword to the constructor invocation.const를 추가하면 performance가 좋아진단다.const는 compile하기 전에 '이미' 알고 있는 값으로 하여 메모리를 차지하지 않도록 한다.ex)const a = 10;const b = 20;var c = a + b;이렇게 했다면 compile을 할 때에는 다음과 같이 바뀐다고 한다.var c = 10 + 20;그냥 a 와 b는 메모리를 차지 하지 않도록 없애버리고 값을 ..