build method

String build()

Implementation

String build() {
  if (type == _TypeBorderCSS.value) {
    return [
      if (color != null) color!.build(),
      if (style != null) _mapperBorderStyleCSS(style!),
      if (width != null) width!.build(),
    ].join(' ');
  } else {
    return _mapperTypeBorderCSS(type);
  }
}