isKnownDartCollectionType static method

bool isKnownDartCollectionType(
  1. String type
)

Implementation

static bool isKnownDartCollectionType(String type) {
  return type == 'List' || type == 'Map' || type == 'Set';
}