menu
chatroom_uikit package
documentation
utils/extension.dart
PutWithoutNull
putIfNotNull method
putIfNotNull method
dark_mode
light_mode
putIfNotNull
method
void
putIfNotNull
(
String
key
,
dynamic
value
)
Implementation
void putIfNotNull(String key, dynamic value) { if (value != null) { this[key] = value; } }
chatroom_uikit package
documentation
utils/extension
PutWithoutNull
putIfNotNull method
PutWithoutNull extension on
Map
<
String
,
dynamic
>