flutter
null safety
잼민코더
2021. 5. 2. 01:37
String? param
-> String 값이 null 일 수 있다
param!.length.tostring()
-> param 값이 null이 될 수 없을때, 값이 있을때 ! 를 사용.