sep method

String sep()

A separator line

Implementation

String sep() {
  const msg = "➖➖➖➖➖➖➖➖➖➖➖";
  if (!deactivatePrint) {
    print(msg);
  }
  hook?.call(msg);
  return msg;
}