toCodeStyle property
String
get
toCodeStyle
Convert to code style
Implementation
String get toCodeStyle {
List<String> list = this.splitByLength(3);
final sb = StringBuffer();
sb.writeAll(list, '-');
return sb.toString();
}