Jonatas
Committed by roi peker

update to Getx 3.10.1

## [3.10.1]
- Fix analyzer
## [3.10.0]
Getx 3.10 released with CLI and Get Server.
- Added: analyser + effective dart (@Grohden)
... ... @@ -13,7 +16,8 @@ Getx 3.10 released with CLI and Get Server.
- Added _RxImp.nil() to easily set the value to null (@roipeker)
- Added missing docs to Rx classes. (@roipeker)
- Added Get.delete(force:false) to Get extensions (@roipeker)
- Improvement Docs (@nipodemos)
- Added Docs and comments (@nipodemos)
- Added docs to PT-br and fix typos (@eduardoflorence)
- Cleanup route code (@justkawal)
- Extension to facilitate insert widgets inside a CustomScrollView (@alexkharech)
- Fix docs .obs examples (@kai-oswald)
... ...
... ... @@ -73,7 +73,7 @@ packages:
path: ".."
relative: true
source: path
version: "3.10.0"
version: "3.10.1"
http_parser:
dependency: transitive
description:
... ...
... ... @@ -29,7 +29,7 @@ abstract class GetInterface {
bool defaultGlobalState = true;
RouteSettings settings;
String defaultSeparator = "_";
String defaultSeparator = '_';
final routing = Routing();
... ...
... ... @@ -136,7 +136,7 @@ Worker interval<T>(RxInterface<T> listener, Function(T) callback,
debounceActive = false;
callback(event);
});
return Worker(sub?.cancel, '[interval]');
return Worker(sub.cancel, '[interval]');
}
/// [debounce] is similar to [interval], but sends the last value.
... ...
name: get
description: Open screens/snackbars/dialogs/bottomSheets without context, manage states and inject dependencies easily with GetX.
version: 3.10.0
version: 3.10.1
homepage: https://github.com/jonataslaw/get
environment:
... ...