isExtensible static method
Determines if the value is extensible (i.e., a table).
Implementation
static bool isExtensible(dynamic value) {
return value is Map;
}
Determines if the value is extensible (i.e., a table).
static bool isExtensible(dynamic value) {
return value is Map;
}