TableWithHeaderCopy constructor

TableWithHeaderCopy()

Implementation

TableWithHeaderCopy() : super() {
  copyButton.onClick.listen((event) {
    copyToClipboard();
  });
  headerPanel.addAll([headerLabel, copyButton]);
  insert(0, headerPanel);
}