Skip to content

Commit a7b711c

Browse files
committed
Upgrade flutter
1 parent 69aac07 commit a7b711c

File tree

6 files changed

+28
-28
lines changed

6 files changed

+28
-28
lines changed

.idea/libraries/Dart_Packages.xml

Lines changed: 10 additions & 10 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

data_structures/linked_list/doubly_linked_list.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -216,7 +216,7 @@ class DoubleLinkedList<T> extends Iterable<T> {
216216
}
217217
}
218218

219-
class _LinkedListIterator<T> extends Iterator<T> {
219+
class _LinkedListIterator<T> implements Iterator<T> {
220220
_LinkedListIterator(this._current);
221221

222222
Node<T>? _current;

data_structures/linked_list/linked_list.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -227,7 +227,7 @@ class LinkedList<T> extends Iterable<T> {
227227
}
228228
}
229229

230-
class _LinkedListIterator<T> extends Iterator<T> {
230+
class _LinkedListIterator<T> implements Iterator<T> {
231231
_LinkedListIterator(this._current);
232232

233233
Node<T>? _current;

data_structures/stack/linked_list_stack.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,4 +92,4 @@ void main() {
9292
linkedList.push(1);
9393
expect(linkedList.isEmpty, false);
9494
});
95-
}
95+
}

pubspec.lock

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -53,10 +53,10 @@ packages:
5353
dependency: "direct main"
5454
description:
5555
name: collection
56-
sha256: "4a07be6cb69c84d677a6c3096fcf960cc3285a8330b4603e0d463d15d9bd934c"
56+
sha256: f092b211a4319e98e5ff58223576de6c2803db36221657b46c82574721240687
5757
url: "https://pub.dev"
5858
source: hosted
59-
version: "1.17.1"
59+
version: "1.17.2"
6060
convert:
6161
dependency: transitive
6262
description:
@@ -141,10 +141,10 @@ packages:
141141
dependency: "direct dev"
142142
description:
143143
name: lints
144-
sha256: "5e4a9cd06d447758280a8ac2405101e0e2094d2a1dbdd3756aec3fe7775ba593"
144+
sha256: "6b0206b0bf4f04961fc5438198ccb3a885685cd67d4d4a32cc20ad7f8adbe015"
145145
url: "https://pub.dev"
146146
source: hosted
147-
version: "2.0.1"
147+
version: "2.1.0"
148148
logging:
149149
dependency: transitive
150150
description:
@@ -309,26 +309,26 @@ packages:
309309
dependency: "direct dev"
310310
description:
311311
name: test
312-
sha256: "3dac9aecf2c3991d09b9cdde4f98ded7b30804a88a0d7e4e7e1678e78d6b97f4"
312+
sha256: "4f92f103ef63b1bbac6f4bd1930624fca81b2574464482512c4f0896319be575"
313313
url: "https://pub.dev"
314314
source: hosted
315-
version: "1.24.1"
315+
version: "1.24.2"
316316
test_api:
317317
dependency: transitive
318318
description:
319319
name: test_api
320-
sha256: eb6ac1540b26de412b3403a163d919ba86f6a973fe6cc50ae3541b80092fdcfb
320+
sha256: daadc9baabec998b062c9091525aa95786508b1c48e9c30f1f891b8bf6ff2e64
321321
url: "https://pub.dev"
322322
source: hosted
323-
version: "0.5.1"
323+
version: "0.5.2"
324324
test_core:
325325
dependency: transitive
326326
description:
327327
name: test_core
328-
sha256: "5138dbffb77b2289ecb12b81c11ba46036590b72a64a7a90d6ffb880f1a29e93"
328+
sha256: "3642b184882f79e76ca57a9230fb971e494c3c1fd09c21ae3083ce891bcc0aa1"
329329
url: "https://pub.dev"
330330
source: hosted
331-
version: "0.5.1"
331+
version: "0.5.2"
332332
typed_data:
333333
dependency: transitive
334334
description:
@@ -378,4 +378,4 @@ packages:
378378
source: hosted
379379
version: "3.1.1"
380380
sdks:
381-
dart: ">=2.19.3 <3.0.0"
381+
dart: ">=3.0.0 <4.0.0"

pubspec.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,12 @@ version: 1.0.0
44
repository: https://github.com/AhmedLSayed9/dart_algorithms_and_data_structures
55

66
environment:
7-
sdk: '>=2.19.3 <3.0.0'
7+
sdk: '>=3.0.0 <4.0.0'
88

99
dependencies:
1010
characters: ^1.3.0
11-
collection: ^1.17.1
11+
collection: ^1.17.2
1212

1313
dev_dependencies:
14-
lints: ^2.0.1
15-
test: ^1.24.1
14+
lints: ^2.1.0
15+
test: ^1.24.2

0 commit comments

Comments
 (0)