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
120
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
既存デザインを変更せずにタップ領域を広げる方法
tahia910
1
240
Javaのルールをねじ曲げろ!禁断の操作とその代償から学ぶメタプログラミング入門 / A Guide to Metaprogramming: Lessons from Forbidden Techniques and Their Price
nrslib
3
2k
すべてのコンテキストを、 ユーザー価値に変える
applism118
1
360
データベースコネクションプール(DBCP)の変遷と理解
fujikawa8
1
270
Team topologies and the microservice architecture: a synergistic relationship
cer
PRO
0
910
実践ArchUnit ~実例による検証パターンの紹介~
ogiwarat
2
280
KotlinConf 2025 現地で感じたServer-Side Kotlin
n_takehata
1
220
Bytecode Manipulation 으로 생산성 높이기
bigstark
2
360
WindowInsetsだってテストしたい
ryunen344
1
190
関数型まつり2025登壇資料「関数プログラミングと再帰」
taisontsukada
2
840
「ElixirでIoT!!」のこれまでとこれから
takasehideki
0
370
Spring gRPC で始める gRPC 入門 / Introduction to gRPC with Spring gRPC
mackey0225
2
520
Featured
See All Featured
Speed Design
sergeychernyshev
31
1k
For a Future-Friendly Web
brad_frost
179
9.8k
Gamification - CAS2011
davidbonilla
81
5.3k
The Language of Interfaces
destraynor
158
25k
Exploring the Power of Turbo Streams & Action Cable | RailsConf2023
kevinliebholz
32
5.9k
The Invisible Side of Design
smashingmag
299
51k
Fireside Chat
paigeccino
37
3.5k
Reflections from 52 weeks, 52 projects
jeffersonlam
351
20k
Sharpening the Axe: The Primacy of Toolmaking
bcantrill
43
2.4k
Save Time (by Creating Custom Rails Generators)
garrettdimon
PRO
31
1.2k
Designing for Performance
lara
609
69k
The Power of CSS Pseudo Elements
geoffreycrofte
77
5.8k
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