getOptionExportOptionsPlist method
Gets the export options plist option formatted for command-line usage.
Returns:
'--export-options-plist "value"'if the option is providednullif the option is not provided
Example:
final exportOptionsPlistFlag = argResults.getOptionExportOptionsPlist();
// Returns '--export-options-plist "path/to/plist"' or null
Implementation
String? getOptionExportOptionsPlist() => this?['export-options-plist'] != null
? '--export-options-plist "${this!['export-options-plist']}"'
: '';