wrapGreen function

String wrapGreen(
  1. String text
)

Implementation

String wrapGreen(final String text) {
  return '\x1B[32m$text\x1B[0m';
}