build method

  1. @override
String build()
override

Implementation

@override
String build() => [
  '<script',
  if (async) ' async',
  if (defer) ' defer',
  if (src != null) ' src="$src"',
  if (type != null) ' type="$type"',
  '>',
  super.build(),
  '</script>',
].join();