isDynamic static method

bool isDynamic(
  1. String type
)

Is a type dynamic?

Implementation

static bool isDynamic(String type) {
  return (type == 'string') ||
      (type == 'bytes') ||
      (parseTypeArray(type) == 'dynamic');
}