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 | 29 | 30 |
Tags
- 플러터
- 코틀린
- text
- kotlin
- Flutter
- Android
- package
- 함수
- 다트
- textstyle
- animation
- 파이썬
- python
- 웹크롤러
- variable
- List
- texttheme
- 크롤러
- function
- Class
- crawler
- set
- import
- map
- 콜렉션
- pushnamed
- Collection
- DART
- ML
- 클래스
Archives
- Today
- Total
목록callable class (1)
조용한 담장

Dart Class Dart language tour class ClassName { } var myClass = ClassName(); Class members ., ?. var p = Point(2, 2); p.y = 3; assert(p.y == 3); num distance = p.distanceTo(Point(4, 4)); // If p is non-null, set its y value to 4. p?.y = 4; Constructor constructor 를 선언하지 않으면 기본적으로 Default constructor 가 생긴다. Default constructor 는 클래스 이름과 동일한 이름을 가지고 argument 가 없다. constructor는 상속되지 않는다. var p1 = P..
Dart
2019. 10. 2. 15:16