wrap method Null safety
Wrap this chalk with specified prefix and suffix strings.
Implementation
Chalk wrap(String prefix, String suffix) {
var chalk = _createStyler(prefix, suffix, this);
chalk._hasStyle = false;
return chalk;
}
Wrap this chalk with specified prefix and suffix strings.
Chalk wrap(String prefix, String suffix) {
var chalk = _createStyler(prefix, suffix, this);
chalk._hasStyle = false;
return chalk;
}