diff --git a/lib/src/core/optional.dart b/lib/src/core/optional.dart index e7e11d84..8a3f2cc1 100644 --- a/lib/src/core/optional.dart +++ b/lib/src/core/optional.dart @@ -19,7 +19,10 @@ import 'dart:collection'; /// Use Optional as an alternative to allowing fields, parameters or return /// values to be null. It signals that a value is not required and provides /// convenience methods for dealing with the absent case. -class Optional extends IterableBase { +// +// TODO(cbracken): Consider making this Optional. +// See: https://github.com/google/quiver-dart/issues/666 +class Optional extends IterableBase { /// Constructs an empty Optional. const Optional.absent() : _value = null;