no_tree_shake_icons property
bool?
get
no_tree_shake_icons
Implementation
bool? get no_tree_shake_icons {
try {
if (rawData["no-tree-shake-icons"] is bool == false) {
return null;
}
return rawData["no-tree-shake-icons"] as bool;
} catch (e) {
return null;
}
}
set
no_tree_shake_icons
(bool? value)
Implementation
set no_tree_shake_icons(bool? value) {
rawData["no-tree-shake-icons"] = value;
}