InterfaceConfig constructor

InterfaceConfig({
  1. required String name,
  2. required Set<InterfaceAttribute> attributes,
  3. required List<InterfacePath> paths,
})

Implementation

InterfaceConfig({
  required this.name,
  required this.attributes,
  required this.paths,
});