PlatformConfig constructor

PlatformConfig({
  1. required String name,
  2. required String output,
  3. required String format,
  4. List<String> namespaces = const [],
})

Implementation

PlatformConfig({
  required this.name,
  required this.output,
  required this.format,
  this.namespaces = const [],
});