types property

List<PortableType> get types

Implementation

List<PortableType> get types {
  return switch (this) {
    final RuntimeMetadataV14 v14 => v14.types,
    final RuntimeMetadataV15 v15 => v15.types,
  };
}