mirror of
https://github.com/AppFlowy-IO/AppFlowy.git
synced 2025-11-08 06:29:07 +00:00
22 lines
464 B
Dart
22 lines
464 B
Dart
|
|
/// The options for the command line tool
|
||
|
|
class Options {
|
||
|
|
/// The source directory which the tool will use to generate the output file
|
||
|
|
String? sourceDir;
|
||
|
|
|
||
|
|
/// The output directory which the tool will use to output the file(s)
|
||
|
|
String? outputDir;
|
||
|
|
|
||
|
|
/// The name of the file that will be generated
|
||
|
|
String? outputFile;
|
||
|
|
|
||
|
|
@override
|
||
|
|
String toString() {
|
||
|
|
return '''
|
||
|
|
Options:
|
||
|
|
sourceDir: $sourceDir
|
||
|
|
outputDir: $outputDir
|
||
|
|
name: $outputFile
|
||
|
|
''';
|
||
|
|
}
|
||
|
|
}
|