Jonatas

update to 3.25.2

## [3.25.1] - Big update
## [3.25.2]
- Improved Workers system to accept a list of works
## [3.25.1]
- Improved the log system to display the tag used in the controller that was created.
## [3.25.0] - Big update
... ...
... ... @@ -13,6 +13,19 @@ bool _conditional(dynamic condition) {
typedef WorkerCallback<T> = Function(T callback);
class Workers {
Workers(this.workers);
final List<Worker> workers;
void dispose() {
for (final worker in workers) {
if (!worker._disposed) {
worker.dispose();
}
}
}
}
///
/// Called every time [listener] changes. As long as the [condition]
/// returns true.
... ...
name: get
description: Open screens/snackbars/dialogs without context, manage states and inject dependencies easily with GetX.
version: 3.25.1
version: 3.25.2
homepage: https://github.com/jonataslaw/getx
environment:
... ...