TagType constructor

const TagType({
  1. required TagKind kind,
  2. required FunctionType functionType,
})

A tag's type.

Implementation

const TagType({
  required this.kind,
  required this.functionType,
});