Messages constructor

Messages({
  1. PreprocessorOptions? options,
  2. void printHandler(
    1. Message obj
    ) = print,
})

Implementation

Messages({PreprocessorOptions? options, this.printHandler = print})
    : options = options ?? const PreprocessorOptions();