html property

String html

Get the tag of html, empty line use
and dashed line use


For loop will generate how much line will printed

Implementation

String get html {
  String concatHtml = '';
  for (int i = 0; i < count; i++) {
    concatHtml += useDashed ? _dashedLine : _emptyLine;
  }
  return concatHtml;
}