addOptionSplitDebugInfo method

void addOptionSplitDebugInfo()

Implementation

void addOptionSplitDebugInfo() {
  addOption(
    'split-debug-info',
    help:
        '''In a release build, this flag reduces application size by storing Dart program symbols in a separate file on the host rather than in the application. The value of the flag
should be a directory where program symbol files can be stored for later use. These symbol files contain the information needed to symbolize Dart stack traces. For an app built
with this flag, the "flutter symbolize" command with the right program symbol file is required to obtain a human readable stack trace.
This flag cannot be combined with "--analyze-size".''',
    defaultsTo: './.symbols/',
  );
}