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 | 31 |
Tags
- textContent
- 생명주기
- 230503
- DOMContentLoaded
- intent
- fragment
- Class
- classList
- DFS
- 인텐트
- Flutter
- 안드로이드
- string
- 230508
- 부가데이터
- null-safety
- C++
- ViewPager
- 230510
- ActionBar
- 함수 인자
- html
- parcelable
- 프래그먼트
- serializable
- javascript
- putextra
- Adapter
- 데이터 타입
- querySelector
Archives
- Today
- Total
목록cascade notation (1)
나만의 개발노트
[Dart] class2 - Cascade Notation / Enums
1. Cascade Notation: 객체의 property(속성)을 간단하게 수정하는 방법객체 선언을 하고, ..(속성) 을 사용, 는 사용하지 않고 마지막에 ;class Player { String name; int xp; String team; Player({ required this.name, required this.xp, required this.team, });}void main() { //기존 코드 var A = Player(name:'A', xp:12, team: 'red'); A.name = 'abc'; A.team = 'blue'; //cascade notation사용 var A = Player(name: 'A', xp: 12, team:..
[Flutter]/[Dart]
2024. 7. 16. 16:44