플러터에서 찾기 어려운 용어 및 개념 정리를 위하여.
as 형변환
is 자바의 instanceof
is! 위와 같음. 반대
isLoading ? showPlaceholder() : showList()
contact?.name
contact?? log('contact는 null')
Contact contact = Contact()
..name = 'kim'
..setAge(30)
() => print("test")
자세한 건 여기
Funcion() 는 리턴값이 있는 함수를 받을 때
Function 은 리턴값 없는 함수 받을 때
class MyColor {
...
MyColor({required this.red, required this.green, required this.blue});
}
final color = MyColor(red: 80, green: 80, blue: 80);
var list = [3,4,5]
var list2 = [1, 2, ...list] // [1, 2, 3, 4, 5]