Jonatas
Committed by roi peker

update to Getx 3.10.1

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