David PHAM-VAN

Add PdfOutline.toString()

@@ -5,6 +5,7 @@ @@ -5,6 +5,7 @@
5 - Fix Text.softWrap behavior 5 - Fix Text.softWrap behavior
6 - Add TableOfContent Widget 6 - Add TableOfContent Widget
7 - Add LinearProgressIndicator 7 - Add LinearProgressIndicator
  8 +- Add PdfOutline.toString()
8 9
9 ## 3.3.0 10 ## 3.3.0
10 11
@@ -195,4 +195,9 @@ class PdfOutline extends PdfObjectDict { @@ -195,4 +195,9 @@ class PdfOutline extends PdfObjectDict {
195 195
196 return c; 196 return c;
197 } 197 }
  198 +
  199 + @override
  200 + String toString() {
  201 + return '$runtimeType $anchor $title';
  202 + }
198 } 203 }