hasContent property
bool
get
hasContent
Whether this tag generates any content to the response's output.
- Notice that it is not about the generated Dart file.
- Most tags don't need to override this (return false), since they
- don't generate something like
response.write(...)
to the Dart file.
Implementation
bool get hasContent => false;