isExpandable static method

bool isExpandable(
  1. dynamic value
)

Determines if the value is expandable.

Implementation

static bool isExpandable(dynamic value) {
  return isExtensible(value) || _isList(value);
}