build method

String build()

Implementation

String build() {
  if (url != null) {
    return [
      'url($url)',
      if (type != null) _mapperTypeCursorCSS(type!),
    ].join(',');
  } else {
    return _mapperTypeCursorCSS(type!);
  }
}