DART1 [Flutter] Dart 기본 문법 안녕하세요~ 챠니입니다! :) Dart에서 제공하는 개발문서를 기반으로 작성했습니다. https://dart.dev/codelabs/dart-cheatsheet 1. 문자열 보관 (String interpolation) 표현식: ${expression} String Result '${3 + 2}' '5' '${"word".toUpperCase()}' 'WORD' '$myObject' The value of myObject.toString() 2. Null관련 (Nullable variables) Dart에서는 Null이 될 수 있다고 명시하지 않는 한 Null값을 가질 수 없음 int a = null; // INVALID. int? a = null; // Valid. int? a; // The initi.. 2023. 10. 24. 이전 1 다음