Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | ||||||
2 | 3 | 4 | 5 | 6 | 7 | 8 |
9 | 10 | 11 | 12 | 13 | 14 | 15 |
16 | 17 | 18 | 19 | 20 | 21 | 22 |
23 | 24 | 25 | 26 | 27 | 28 |
Tags
- generate parentheses dart
- AnimationController
- swift 동시성
- flutter widget
- 파이썬 부동소수점
- widget
- leetcode dart
- lol api dart
- com.google.GIDSignIn
- 롤 api dart
- 롤토체스 api dart
- flutter
- flutter ios 폴더
- docker overview
- riot api dart
- tft api dart
- dart new
- flutter bloc
- dart
- 발로란트 api dart
- PlatformException(sign_in_failed
- swift concurrency
- 파이썬
- dart new 키워드
- flutter android 폴더
- dart.dev
- flutter statefulwidget
- Architectural overview
- valorant api dart
- keychain error
Archives
- Today
- Total
Coaspe
Dart - dynamic vs never vs object 본문
- Object: The superclass of all Dart classes except Null.
- Never: Indicates that an expression can never successfully finish evaluating. Most often used for functions that always throw an exception.
- dynamic: Indicates that you want to disable static checking. Usually you should use Object or Object? instead.
- Object: Null을 제외한 모든 Dart 클래스의 superclass
- Never: Evaluating(평가)가 절대 완료되지 않은 expression을 의미합니다. 항상 exception을 발생하는 함수에 사용됩니다.
- Dynamic: 정적 타입 체킹을 사용하지 않습니다. 보통 Object나 Object?를 사용하는 것을 권장합니다.
'Dart' 카테고리의 다른 글
Riot API를 위한 Dart 패키지를 만들었습니다! (0) | 2023.02.17 |
---|---|
dart.dev 번역 작업 프로젝트가 승인되어 공식 홈페이지에 기재되었습니다! (2) | 2023.02.17 |
Dart - Future를 취소하는 법 (0) | 2023.02.17 |
Dart - extends vs implements vs with (0) | 2023.02.17 |
Comments