TypeMember constructor
const
TypeMember({
- required String name,
- required AbstractType type,
- List<
TypeAnnotation> annotations = const <TypeAnnotation>[],
Construct a new TypeMember.
Implementation
const TypeMember({
required this.name,
required this.type,
this.annotations = const <TypeAnnotation>[],
});