본문 바로가기
Flutter

[Flutter] 함수형 프로그래밍

by hymndaniel 2023. 6. 29.

형 변환을 위한 방법들

.asMap

.toList

.toSet

.fold<T>(0, (previous, next) => )

.reduce((previous, next) => )

.map((e) => )

.where((x) => )

cascading operator : ...

 

 
728x90

'Flutter' 카테고리의 다른 글

[Flutter] Animation  (0) 2023.07.01
[Flutter] Clean Architecture / MVVM  (0) 2023.06.30
[Flutter] debounce & Throttle  (0) 2023.06.29
[Flutter] ListView의 마지막 항목의 패딩  (0) 2023.06.28
[Flutter] (Cache) 캐시 관리  (0) 2023.06.28