joinWith method Null safety

Chalk joinWith(
  1. String joinWith
)

Specify string to use for joining multiple arguments or Lists. Default is ' ' (single space).

Implementation

Chalk joinWith(String joinWith) {
  var chalk = _createStyler('', '', this);
  chalk._hasStyle = false;
  chalk._joinString = joinWith;
  return chalk;
}