Interface constructor
Interface({
- required String name,
- required Set<
InterfaceAttribute> attributes,
Implementation
Interface({required this.name, required this.attributes})
: hasLists = attributes.any((a) => a.returnType.startsWith('List<'));