Dev study and notes

[dart] #4 - #1.3 Nullable Variables (06:09) 2 본문

studyLog

[dart] #4 - #1.3 Nullable Variables (06:09) 2

devlunch4 2023. 4. 28. 23:46
반응형
void main() {
    String? lunch = 'lunch';
    print(lunch?.isNotEmpty);

    lunch = null;
    print(lunch?.isNotEmpty);
}
반응형
Comments