SharedOptions constructor

SharedOptions({
  1. required List<String> libPaths,
  2. required List<String> assetPaths,
  3. required String dustbinPath,
  4. required String listPath,
  5. required String configPath,
  6. required Map<String, String?> nameReplaces,
  7. required List<String> excludePaths,
  8. required FormatType? formatType,
})

Implementation

SharedOptions({
  required this.libPaths,
  required this.assetPaths,
  required this.dustbinPath,
  required this.listPath,
  required this.configPath,
  required this.nameReplaces,
  required this.excludePaths,
  required this.formatType,
});