Upgrade to Pro
— share decks privately, control downloads, hide ads and more …
Speaker Deck
Features
Speaker Deck
PRO
Sign in
Sign up for free
Search
Search
Flutter ?? Usecase of Null-Aware Operator
Search
ShangWeiTsai
December 18, 2019
Programming
0
110
Flutter ?? Usecase of Null-Aware Operator
An usecase of Null-Aware Operator
ShangWeiTsai
December 18, 2019
Tweet
Share
Other Decks in Programming
See All in Programming
ウォンテッドリーの「ココロオドル」モバイル開発 / Wantedly's "kokoro odoru" mobile development
kubode
1
200
AI時代の開発者評価について
ayumuu
0
210
PHP で学ぶ OAuth 入門
azuki
1
210
AIコーディングエージェントを 「使いこなす」ための実践知と現在地 in ログラス / How to Use AI Coding Agent in Loglass
rkaga
4
970
大LLM時代にこの先生きのこるには-ITエンジニア編
fumiyakume
7
3.2k
Thank you <💅>, What's the Next?
ahoxa
1
560
Make Parsers Compatible Using Automata Learning
makenowjust
2
5.7k
Laravel × Clean Architecture
bumptakayuki
PRO
0
110
小田原でみんなで一句詠みたいな #phpcon_odawara
stefafafan
0
350
「”誤った使い方をすることが困難”な設計」で良いコードの基礎を固めよう / phpcon-odawara-2025
taniguhey
0
170
Dissecting and Reconstructing Ruby Syntactic Structures
ydah
2
1.3k
RubyKaigi Dev Meeting 2025
tenderlove
1
430
Featured
See All Featured
Making Projects Easy
brettharned
116
6.1k
The MySQL Ecosystem @ GitHub 2015
samlambert
251
12k
RailsConf 2023
tenderlove
30
1.1k
A better future with KSS
kneath
239
17k
Fashionably flexible responsive web design (full day workshop)
malarkey
407
66k
Why Our Code Smells
bkeepers
PRO
336
57k
Documentation Writing (for coders)
carmenintech
69
4.7k
Designing Dashboards & Data Visualisations in Web Apps
destraynor
231
53k
Agile that works and the tools we love
rasmusluckow
328
21k
Typedesign – Prime Four
hannesfritz
41
2.6k
RailsConf & Balkan Ruby 2019: The Past, Present, and Future of Rails at GitHub
eileencodes
135
33k
Improving Core Web Vitals using Speculation Rules API
sergeychernyshev
13
800
Transcript
Flutter ?? Usecase of Null-Aware Operator Wayne Tsai
What the Null-Aware Operator print(null ?? 'right'); print(true ?? 'right');
print(false ?? 'right'); print('left' ?? 'right'); print(['left'] ?? 'right'); print({'left': true} ?? 'right'); print(['left'] ?? 'right'); right true false left [left] {left: true} [left]
Cache Function
Cache Function in Javascript
Cache Function usage in js
Cache Function in Dart - V1
Cache Function in Dart - V2