header method

MatchedClosure header(
  1. [String? tag]
)

Implementation

MatchedClosure header([String? tag]) {
  printRaw("🤖 Processing ${(tag ?? '')}\n");
  return <T>(result) {
    footer(tag);
    return result;
  };
}