타입 num 타입 : int 타입 + double 타입인듯 float은 안보임 auto 같은 var as 로 타입변환이 되는데 0.1이 int가 되진 못함 타입검사 if (a is int) {...} if (a is! int) {...} 연산자 https://dart.dev/guides/language/language-tour#operators ~/ : 몫 연산자가 있음 아무래도 int 타입때문인듯 - null aware operators ?? : if null operator : null인지 체크 // prefs.getBool('some-feature') 가 null이면 false 아니면 prefs.getBool('some-feature') bool v = prefs.getBool('some-featu..