isTagSupported 静态方法

bool isTagSupported(
  1. String tag
)
override

检查当前平台是否支持 SVG 元素类型。

标签应该是有效的 SVG 元素标签名。

实现

static bool isTagSupported(String tag) {
  var e = new SvgElement.tag(tag);
  return e is SvgElement && !(e is UnknownElement);
}