wrap method
Returns this string wrapped with before prepended and after
appended.
Implementation
@useResult
String wrap({String? before, String? after}) {
final String prefix = before ?? '';
final String suffix = after ?? '';
return '$prefix$this$suffix';
}