NamedType constructor
NamedType({
- required String name,
- required TypeDeclaration type,
- int? offset,
- List<
String> documentationComments = const <String>[],
Parametric constructor for NamedType.
Implementation
NamedType({
required this.name,
required this.type,
this.offset,
this.documentationComments = const <String>[],
});