Skip to content

Commit

Permalink
Fixed invalid_use_of_type_outside_library error related to dart Itera…
Browse files Browse the repository at this point in the history
…tor class (#1554)

Signed-off-by: Sameer Mahant <[email protected]>
  • Loading branch information
sameermahant authored Sep 21, 2023
1 parent 2f9fdce commit 1ac4bd5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
import 'dart:ffi';
import 'dart:math';

class _LazyIterator<E> extends Iterator<E> {
class _LazyIterator<E> implements Iterator<E> {
final List<E> list;
final int step;
final int length;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import 'dart:ffi';
import 'dart:math';
class _LazyIterator<E> extends Iterator<E> {
class _LazyIterator<E> implements Iterator<E> {
final List<E> list;
final int step;
final int length;
Expand Down

0 comments on commit 1ac4bd5

Please sign in to comment.