toArgumentsLine method

String toArgumentsLine({
  1. bool abbreviateFlags = true,
  2. bool abbreviateParameters = false,
})

Converts this instances to a String line.

The inverse of parseLine.

Implementation

String toArgumentsLine(
        {bool abbreviateFlags = true, bool abbreviateParameters = false}) =>
    toArgumentsList(
            abbreviateFlags: abbreviateFlags,
            abbreviateParameters: abbreviateParameters)
        .join(' ');