isExpandable static method
Determines if the value is expandable.
Implementation
static bool isExpandable(dynamic value) {
return isExtensible(value) || _isList(value);
}
Determines if the value is expandable.
static bool isExpandable(dynamic value) {
return isExtensible(value) || _isList(value);
}