printIt static method

String printIt(
  1. String copy, {
  2. String repeat = "1",
})

Implementation

static String printIt(String copy, {String repeat = "1"}) {
  return createLine(PRINT, [copy, repeat]);
}