success method

void success(
  1. String text, {
  2. bool onlyVerbose = true,
})

Implementation

void success(final String text, {final bool onlyVerbose = true}) {
  if (_verboseMode || !onlyVerbose) {
    print(wrapGreen(text));
  }
}