본문 바로가기
개발/Flutter

class initializer 각각의 차이점

by dev_caleb 2023. 1. 8.
728x90

https://stackoverflow.com/questions/64546212/is-there-a-difference-in-how-member-variables-are-initialized-in-dart/64548861#64548861

 

Is there a difference in how member variables are initialized in Dart?

In Dart, is there a difference in assigning values right away vs in constructor like in Java? class Example { int x = 3; } vs class Example { int x; Example() { x = 3; } } ...

stackoverflow.com

 

728x90

'개발 > Flutter' 카테고리의 다른 글

앱 껐다 켜기 flutter restart app  (2) 2023.01.21
GPS 좌표 찍기 사이트 추천!  (0) 2023.01.21
Facebook login  (1) 2022.12.30
sublist 오류 막기  (0) 2022.12.30
Rx null 사용 하는 법, RxList, RxSet  (0) 2022.12.29