| Index: packages/quiver/lib/src/collection/delegates/list.dart
|
| diff --git a/packages/quiver/lib/src/collection/delegates/list.dart b/packages/quiver/lib/src/collection/delegates/list.dart
|
| index 7863539407c20f3e37e0eedee8e5b24f1dee4f31..864ff86d0ad5aff9303c10911a2b1a93fb21b044 100644
|
| --- a/packages/quiver/lib/src/collection/delegates/list.dart
|
| +++ b/packages/quiver/lib/src/collection/delegates/list.dart
|
| @@ -14,18 +14,16 @@
|
|
|
| part of quiver.collection;
|
|
|
| -/**
|
| - * An implementation of [List] that delegates all methods to another [List].
|
| - * For instance you can create a FruitList like this :
|
| - *
|
| - * class FruitList extends DelegatingList<Fruit> {
|
| - * final List<Fruit> _fruits = [];
|
| - *
|
| - * List<Fruit> get delegate => _fruits;
|
| - *
|
| - * // custom methods
|
| - * }
|
| - */
|
| +/// An implementation of [List] that delegates all methods to another [List].
|
| +/// For instance you can create a FruitList like this :
|
| +///
|
| +/// class FruitList extends DelegatingList<Fruit> {
|
| +/// final List<Fruit> _fruits = [];
|
| +///
|
| +/// List<Fruit> get delegate => _fruits;
|
| +///
|
| +/// // custom methods
|
| +/// }
|
| abstract class DelegatingList<E> extends DelegatingIterable<E>
|
| implements List<E> {
|
| List<E> get delegate;
|
|
|