mirror of
https://gitlab.com/nkming2/nc-photos.git
synced 2025-02-02 06:46:22 +01:00
Update xml
This commit is contained in:
parent
a9ab10508e
commit
f55f68b593
3 changed files with 12 additions and 4 deletions
|
@ -84,6 +84,14 @@ extension IterableExtension<T> on Iterable<T> {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
extension IterableFlattenExtension<T> on Iterable<Iterable<T>> {
|
||||||
|
/// Flattens an [Iterable] of [Iterable] values of type [T] to a [Iterable] of
|
||||||
|
/// values of type [T].
|
||||||
|
///
|
||||||
|
/// This function originated in the xml package
|
||||||
|
Iterable<T> flatten() => expand((values) => values);
|
||||||
|
}
|
||||||
|
|
||||||
class _ComputeAllMessage<T, U> {
|
class _ComputeAllMessage<T, U> {
|
||||||
const _ComputeAllMessage(this.callback, this.data);
|
const _ComputeAllMessage(this.callback, this.data);
|
||||||
|
|
||||||
|
|
|
@ -226,7 +226,7 @@ packages:
|
||||||
name: dbus
|
name: dbus
|
||||||
url: "https://pub.dartlang.org"
|
url: "https://pub.dartlang.org"
|
||||||
source: hosted
|
source: hosted
|
||||||
version: "0.7.3"
|
version: "0.7.4"
|
||||||
device_info_plus:
|
device_info_plus:
|
||||||
dependency: "direct main"
|
dependency: "direct main"
|
||||||
description:
|
description:
|
||||||
|
@ -774,7 +774,7 @@ packages:
|
||||||
name: petitparser
|
name: petitparser
|
||||||
url: "https://pub.dartlang.org"
|
url: "https://pub.dartlang.org"
|
||||||
source: hosted
|
source: hosted
|
||||||
version: "4.4.0"
|
version: "5.0.0"
|
||||||
platform:
|
platform:
|
||||||
dependency: transitive
|
dependency: transitive
|
||||||
description:
|
description:
|
||||||
|
@ -1296,7 +1296,7 @@ packages:
|
||||||
name: xml
|
name: xml
|
||||||
url: "https://pub.dartlang.org"
|
url: "https://pub.dartlang.org"
|
||||||
source: hosted
|
source: hosted
|
||||||
version: "5.3.1"
|
version: "6.1.0"
|
||||||
yaml:
|
yaml:
|
||||||
dependency: transitive
|
dependency: transitive
|
||||||
description:
|
description:
|
||||||
|
|
|
@ -99,7 +99,7 @@ dependencies:
|
||||||
visibility_detector: ^0.3.3
|
visibility_detector: ^0.3.3
|
||||||
wakelock: ^0.5.2
|
wakelock: ^0.5.2
|
||||||
woozy_search: ^2.0.3
|
woozy_search: ^2.0.3
|
||||||
xml: ^5.0.2
|
xml: ^6.1.0
|
||||||
|
|
||||||
dev_dependencies:
|
dev_dependencies:
|
||||||
test: any
|
test: any
|
||||||
|
|
Loading…
Reference in a new issue