withOutput method

ProgramOptions withOutput(
  1. void output(
    1. String
    )
)

Creates options with custom output function.

Implementation

ProgramOptions withOutput(void Function(String) output) =>
    copyWith(output: output);