Jonny Borges

bump to 4.1.4

## [4.1.4]
- Adjust operator + and - to RxInt (@eduardoflorence)
- Fix dark theme (@eduardoflorence)
- Fix form-urlencoded on GetConnect (@aramayyes)
## [4.1.3]
- Fix "Error: A value of type 'Locale?' can't be returned from a function"on flutter web (@nickwri)
- Fix plural translations to expressions >1 (@WolfVic)
... ...
... ... @@ -103,7 +103,9 @@ class GetHttpClient {
headers['content-length'] = bodyBytes.length.toString();
headers['content-type'] =
'multipart/form-data; boundary=${body.boundary}';
} else if (contentType != null && contentType.toLowerCase() == 'application/x-www-form-urlencoded' && body is Map) {
} else if (contentType != null &&
contentType.toLowerCase() == 'application/x-www-form-urlencoded' &&
body is Map) {
var parts = [];
(body as Map<String, dynamic>).forEach((key, value) {
parts.add('${Uri.encodeQueryComponent(key)}='
... ...
name: get
description: Open screens/snackbars/dialogs without context, manage states and inject dependencies easily with GetX.
version: 4.1.3
version: 4.1.4
homepage: https://github.com/jonataslaw/getx
environment:
... ...