build method

String build()

Implementation

String build() {
  if (type == TextDecorationTypeCSS.none) {
    return 'none';
  } else {
    return [
      if (color != null) color!.build(),
      if (type != null) _mapperTextDecorationCSS(type!),
      if (style != null) _mapperTextDecorationStyleCSS(style!),
    ].join(' ');
  }
}