[Dart] Arrow Functions
[Ko]
- void abc(…) {…aaa…};
—> 함수부 …aaa… 가 1줄의 코드일 때 { } 대신 =>를 사용할 수 있으며, =>는 return 을 내포하고 있으므로 return은 생략 가능함.
==============================================================
[En]
- void abc(…) {…aaa…};
--> Function part… aaa ... When = is 1 line of code, you can use => instead of {}, and => contains return, so return can be omitted.
'플러터(Flutter) > 다트(Dart)' 카테고리의 다른 글
[Dart] Conditionals - If/Else (0) | 2020.03.18 |
---|---|
[Dart] List (0) | 2020.03.18 |
[Dart] Functions with return data type (0) | 2020.03.18 |
[Dart] Functions with argument (0) | 2020.03.18 |
[Dart] Data Types (0) | 2020.03.18 |