{"id":13549636,"url":"https://github.com/droididan/dart_extensions","last_synced_at":"2026-04-10T10:02:29.305Z","repository":{"id":44885168,"uuid":"232571317","full_name":"droididan/dart_extensions","owner":"droididan","description":"extentions for dart","archived":false,"fork":false,"pushed_at":"2024-04-02T14:41:29.000Z","size":270,"stargazers_count":63,"open_issues_count":15,"forks_count":25,"subscribers_count":3,"default_branch":"master","last_synced_at":"2025-04-02T16:19:49.260Z","etag":null,"topics":["dart","extention-methods","extentions","flutter"],"latest_commit_sha":null,"homepage":null,"language":"Dart","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"bsd-3-clause","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/droididan.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2020-01-08T13:37:55.000Z","updated_at":"2024-05-07T05:27:07.000Z","dependencies_parsed_at":"2024-03-16T22:00:24.146Z","dependency_job_id":"5a674a26-3d5b-49a7-9880-3ba296e0bc1c","html_url":"https://github.com/droididan/dart_extensions","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/droididan/dart_extensions","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/droididan%2Fdart_extensions","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/droididan%2Fdart_extensions/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/droididan%2Fdart_extensions/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/droididan%2Fdart_extensions/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/droididan","download_url":"https://codeload.github.com/droididan/dart_extensions/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/droididan%2Fdart_extensions/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31637748,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-10T07:40:12.752Z","status":"ssl_error","status_checked_at":"2026-04-10T07:40:11.664Z","response_time":98,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["dart","extention-methods","extentions","flutter"],"created_at":"2024-08-01T12:01:23.872Z","updated_at":"2026-04-10T10:02:29.290Z","avatar_url":"https://github.com/droididan.png","language":"Dart","funding_links":[],"categories":["Dart"],"sub_categories":[],"readme":"  \n[![](https://img.shields.io/badge/ver-2.2.4-green)](https://github.com/droididan/dart_extentions)   ![](https://img.shields.io/badge/Code%20Coverage-96%25-green) ![](https://img.shields.io/badge/Bitrise-Pass-green)  \n  \n \n## What New (2.2.4)\n* Sliver extensions\n\nWhy Method Extensions? When you’re using someone else’s API or when you implement a library that’s widely used, it’s often impractical or impossible to change the API. But you might still want to add some functionality.  \n  \n  *let me know if you want something specific or you found a bug at bar.idan@gmail.com*  \n## Let get started 💪🏻 \n  \n1. Go to `pubspec.yaml` \n2. add a dart_extensions and replace `[version]` with the latest version:  \n  \n```dart  \ndependencies:  \n dart_extensions: ^[version]\n ```\n  \n3. click the packages get button or *flutter pub get*  \n## Responsive UI\nVery common way to calculate size in percentage is using the MediaQuery like so:\n```dart\nMediaQuery.of(context).size.width * 0.1\n```\n\n\nFlatten a nested Map into a single level map\n```dart\nresponse.flatJson({\n  'key1': {'keyA': 'valueI'},\n  'key2': {'keyB': 'valueII'},\n  'key3': {\n    'a': {\n      'b': {'c': 2}\n    }\n  }\n});\n\nThe result you can also specify max depth, its the maximum number of nested objects to flatten.\n```\n// {\n//   'key1.keyA': 'valueI',\n//   'key2.keyB': 'valueII',\n//   'key3.a.b.c': 2\n// };\n\n\nInstead of the boilerplate we can use this awesome extension and get the same results.\n\nWrap your Application with:\n```dart\nResponsiveApp(\n      builder: (BuildContext context, Orientation orientation, DeviceType deviceType) {\n        return YourAppWidget()\n)\n```\n\n```dart\nAnimatedList(\n              key: chatListKey,\n              reverse: true,\n              padding: EdgeInsets.only(top: 10.textSizeResponsive),\n              shrinkWrap: true,\n```\nAlso the text should be responsive, no problem\n```dart\nText(\n  'Note added by ${message.from ?? ''}',\n  style: avanirBook.copyWith(fontSize: 8.responsiveText),\n),\n```\n\n## Iterable Extensions\n\n### .any()\nReturns `true` if at least one element matches the given predicate.\n```dart\nfinal users = [User(22, \"Kasey\"), User(23, \"Jadn\")]; \nusers.any((u) =\u003e u.name == 'Kasey') // true\n```\n\n### .groupBy()\nGroups the elements in values by the value returned by key.\n```dart\nfinal users = [User(22, \"Kasey\"), User(23, \"Jadn\"), User(22, \"Rene\"), User(32, \"Aden\")]; \n\nusers.groupBy((u) =\u003e u.age); \n```\nSort the users by age:\n```dart\n{  \n  22: [User:22, Kasey, User:22, Rene], \n  23: [User:23, Jadn], \n  32: [User:32, Aden]\n}\n```\n\n### .sortBy()\nSorts elements in the array in-place according to natural sort order of the value returned by specified selector function.\n```dart\nfinal users = [User(22, \"Kasey\"), User(16, \"Roni\"), User(23, \"Jadn\")]; \nusers.sortBy((u) =\u003e u.age) ///  [User(16, \"Roni\"), [User(22, \"Kasey\"), User(23, \"Jadn\")]\n```\n\n### .find()\nReturns the first element matching the given predicate, or `null` if element wasn't found.\n```dart\nfinal users = [User(22, \"Kasey\"), User(23, \"Jadn\"), User(22, \"Rene\"), User(32, \"Aden\")]; \n\nusers.find((u) =\u003e u.name == \"Rene\") // User(22, \"Rene\")\n```\n\n### .chunks()\nSplits the Iterable into chunks of the specified `size`\n```dart\n[1, 2, 3, 4, 5, 6, 7, 8, 9, 10].chunks(3)) \n```\n*result*\n```dart\n([1, 2, 3], [4, 5, 6], [7, 8, 9], [10])\n```\n\n### .filter() \n Returns a list containing only elements matching the given predicate, the return type will be `List`,\n unlike the `where` operator that return `Iterator`,  also it filters null.\n```dart\nfinal users = [User(22, \"Kasey\"), User(23, \"Jadn\"), User(22, \"Rene\"), User(32, \"Aden\")]; \nfinal filtered = users.filter((u) =\u003e u.name == \"Kasey\"); // [User(22, \"Kasey\")] \u003c- Type List\u003cUser\u003e\n\nfinal listWithNull = [null, User(23, \"Jadn\"), User(22, \"Rene\"), User(32, \"Aden\")];\nfinal filtered = listWithNull.filter((u) =\u003e u.name == \"Jadn\"); // [User(23, \"Jadn\")]\n```\n\n### .intersect()\nReturns a set containing all elements that are contained by both this set and the specified collection.\n```dart\nSet.from([1, 2, 3, 4]).intersect(Set.from([3, 4, 5, 6]) // 1,2,3,4,5,6\n```\n\n### .filterNot() \n Returns a list containing only not the elements matching the given predicate, the return type will be `List`,\n unlike the `where` operator that return `Iterator`,  also it filters null.\n```dart\nfinal users = [User(22, \"Kasey\"), User(23, \"Jadn\"), User(22, \"Rene\"), User(32, \"Aden\")]; \nfinal filtered = users.filterNot((u) =\u003e u.name == \"Kasey\"); // [User(23, \"Jadn\"), User(22, \"Rene\"), User(32, \"Aden\")] \u003c- Type List\u003cUser\u003e\n\nfinal listWithNull = [null, User(23, \"Jadn\"), User(22, \"Rene\"), User(32, \"Aden\")];\nfinal filtered = listWithNull.filterNot((u) =\u003e u.name == \"Jadn\"); // [User(22, \"Rene\"), User(32, \"Aden\")]\n```\n\n### .takeOnly() \nReturns a list containing first [n] elements.\n```dart\n[1, 2, 3, 4].takeOnly(1) // [1]\n```\n\n### .drop() \nReturns a list containing all elements except first [n] elements.\n```dart\n[1, 2, 3, 4].drop(1) // [2, 3, 4]\n```\n\n### .forEachIndexed()\nPerforms the given action on each element on iterable, providing sequential `index` with the `element`.\n```dart\n[\"red\",\"green\",\"blue\"].forEachIndexed((item, index) { \n\tprint(\"$item, $index\"); \n}); // 0: red // 1: green // 2: blue```  \n```\n\n### .sortedDescending()  \nReturns a new list with all elements sorted according to descending natural sort order.\n```dart  \nvar list = [1,2,3,4,5];  \nfinal descendingList = list.sortedDescending();  \nprint(descendingList); // [5, 4, 3, 2, 1]\n```  \n  \n### .count()  \nReturn a number of the existing elements by a specific predicate\n```dart  \nfinal users = [User(33, \"Miki\"), User(45, \"Anna\"), User(19, \"Amit\")];  \n  \nfinal aboveAgeTwenty = users.count((user) =\u003e user.age \u003e 20);  \nprint(aboveAgeTwenty); // 2\n```\n\n### .associate()  \nCreates a Map instance in which the keys and values are computed from the iterable.\n```dart  \nfinal users = [User(33, \"Miki\"), User(45, \"Anna\"), User(19, \"Amit\")];  \n\nusers.associate((k) =\u003e k.name, (e) =\u003e e.age) // 'Miki': 33, 'Anna': 45, 'Amit': 19}\n```\n\n### .concatWithMultipleList()  \nReturn a list concatenates the output of the current list and multiple iterables.\n```dart  \n  final listOfLists = [\n        [5, 6, 7],\n        [8, 9, 10]\n      ];\n  [1, 2, 3, 4].concatWithMultipleList(listOfLists); \n  \n  // [1, 2, 3, 4, 5, 6, 7, 8, 9, 10]\n```\n  \n### .distinctBy()  \nReturns a list containing only the elements from given collection having distinct keys.\n```dart  \n// example 1\nfinal users = [\"Zack\", \"Ian\", \"Ronit\"];  \nusers.distinctBy((u) =\u003e u.toLowerCase().startsWith(\"z\")); // Zack \n\n// example 2\nfinal users = [User(11, 'idan'), User(12, 'ronit'), User(11, 'asaf')];\n\t\nfinal dist = users.distinctBy((u) =\u003e u.age);    \ndist.forEach((u) =\u003e print(u.age)); //  11, 12\n```  \n  \n### .zip()  \nZip is used to combine multiple iterables into a single list that contains  the combination of them two.\n```dart  \n\nfinal soldThisMonth = [Motorcycle(2020, 'BMW R1200GS'), Motorcycle(1967, 'Honda GoldWing')];\nfinal soldLastMonth = [Motorcycle(2014, 'Honda Transalp'), Motorcycle(2019, 'Ducati Multistrada')];    \n  \nfinal sales = soldThisMonth.zip(soldLastMonth).toList();  \n  \t\t\t\t\nprint(sales); // [\n  [brand: BMW R1200GS year: 2020, brand: Honda Transalp year: 2014], // first pair from this month and last\n  [brand: Honda GoldWing year: 1967, brand: Ducati Multistrada year: 2019] // second pair from last month \n]\n```  \nSee [iterable.dart](https://github.com/droididan/dart_extentions/blob/master/lib/iterable.dart) for more  examples.  \n\n## Flutter Extensions\n\n### Context extensions\nAre you not tired from typing `MediaQuery.of(context).size...` to get height or width? here's a cool extension\n```dart\n  context.mq  // returns the MediaQuery\n```\n\n```dart\n  context isLandscape // returns if Orientation is landscape\n```\n\n```dart\ncontext.sizePx // returns same as MediaQuery.of(context).size\n```\n\n```dart\ncontext.widthPx // returns same as MediaQuery.of(context).size.width\n```\n\n```dart\ncontext.heightPx // returns same as MediaQuery.of(context).height\n```\n\n### Text Extensions\n```dart\nfinal text = Text('hello')\n     .bold()\n     .fontSize(25)\n     .italic();\n```\n\n### List\u003cWidget\u003e Extensions\n```dart\n    final someWidgetList = [\n      Text('hello'),\n      Text('world'),\n    ].toColumnWidget();  // toRowWidget(), toStackWidget()\n```\n\n### Widget extensions\nSo now we can just add round corners, shadows, align, and added gestures to our `Widgets` without the crazy water-fall effect. awesome!\nThat's just the tip of the iceberg, expect to see very cool stuff soon.\n```dart\nclass Home extends StatefulWidget {\n  @override\n  _HomeState createState() =\u003e _HomeState();\n}\n\nclass _HomeState extends State\u003cHome\u003e {\n\n  @override\n  Widget build(BuildContext context) {\n    return Scaffold(\n      body: Container(\n        child: Stack(\n          children: \u003cWidget\u003e[\n            Container(\n              height: 100,\n              width: 100,\n            )   .withRoundCorners(backgroundColor: Colors.grey)\n                .withShadow()\n                .alignAtCenter()\n                .toCenter()\n                .withTooltip('just a tooltip')\n                .paddingOnly(left: 10)\n                .paddingAll(20)\n                .onTap(() =\u003e print('tap'))\n                .onLongPress(() =\u003e print('long press'))\n          ],\n        ),\n      ),\n    );\n  }\n}\n```\n\n### Navigation\nWe can navigate from every widget by calling these methods\n```dart\n    navigateTo(route: MaterialPageRoute(builder: (c) =\u003e Login()));\n    navigateByRouteName(Routes.home, );\n    final result = navigateBack();\n```\n\n\n## Http Extensions\n\n### .httpGet()\nSends an HTTP GET request with the given headers to the given URL\n```dart\nfinal json = await \"https://jsonplaceholder.typicode.com/posts\".httpGet();\n```\n*result:*\n```json\n[\n  {\n    \"userId\": 1,\n    \"id\": 1,\n    \"title\": \"sunt aut facere\",\n    \"body\": \"quia et suscipit\"\n  },\n  {\n    \"userId\": 1,\n    \"id\": 2,\n    \"title\": \"qui est esse\",\n    \"body\": \"dolor beatae ea dolores neque\"\n  },\n]\n```\n\n*usage with then:*\n```dart\n\"https://jsonplaceholder.typicode.com/posts\".httpGet().then((result) {\n          print(result);\n       }).catchError((e) =\u003e print(e));\n```\n\n### .httpPost()\nSends an HTTP POST request with the given headers and body to the given URL which can be a [Uri] or a [String].\n```dart\nString json = '{\"title\": \"Hello\", \"body\": \"body text\", \"userId\": 1}';\nfinal json = await \"https://jsonplaceholder.typicode.com/posts\".httpPost(json);\n```\n\nfor more examples (put, delete) See [http.dart](https://github.com/droididan/dart_extentions/blob/master/lib/http.dart) \n\n## Range Extensions\n### .until()\nReturns a sequence of integer, starting from the current number until the [end] number. [step] is optional, it will step number if given\n```dart\nfor(final num in 1.until(10)) {\n  numbers.add(num); \n}\n```\n*result*\n```dart\n[1, 2, 3, 4, 5, 6, 7, 8, 9]\n```\nwith step:\n```dart\nfor(final num in 1.until(10, step: 2)) {\n  numbers.add(num); \n}\n```\n*result*\n```dart\n[1, 3, 5, 7, 9]\n```\n\n## String Extensions\n\n\n### .asBool()\nReturns true if this string is any of these values: \"true\", \"yes\", \"1\", or if the string is a number and greater than 0, false if less than 1. This is also case insensitive.\n```dart\n'true'.asBool  // true\n'True'.asBool  // true\n'false'.asBool //  false\n'False'.asBool //  false\n'yes'.asBool   // true\n'YES'.asBool   // true\n'no'.asBool    // false\n'NO'.asBool    // false\n```\n\n\n### .insert()\nReturns a new string in which a specified string is inserted at a specified index position in this instance.\n```dart\n'test'.insert(1, 't') // 'ttest'\n'123456890'.insert(6, '7') // '1234567890'\n'dart cool'.insert(4, ' is') // 'dart is cool'\n```\n\n### .isNullOrWhiteSpace()\nIndicates whether a specified string is `null`, `empty`, or consists only of `white-space` characters.\n```dart\n'test'.isNullOrWhiteSpace // false\n'   '.isNullOrWhiteSpace, // true\nnull.isNullOrWhiteSpace, // true\n'  te  st  '.isNullOrWhiteSpace // false\n```\n\n### .replaceAfter()\nReplace part of string after the first occurrence of given delimiter.\n```dart  \nprint(\"myemail@\".replaceAfter(\"@\", \"gmail.com\")); // myemail@gmail.com \n```  \n### .replaceBefore()\nReplace part of string before the first occurrence of given delimiter.\n```dart  \nprint('@domain.com'.replaceBefore('@', \"name\")); // \"name@domain.com\"\n```\n\n### .anyChar()\nReturns `true` if at least one element matches the given predicate\n```dart  \n'test'.anyChar((c) =\u003e c == 't'); // true;\n'test'.anyChar((c) =\u003e c == 'd'); // false;\n```\n\n### .ifEmpty()\nIf the string is empty perform an action.\n```dart  \n\"\".ifEmpty(() =\u003e print(\"do any action here\")); // do any action here\n```  \n  \n### .toDoubleOrNull()  \nParses the string as an integer or returns `null` if it is not a number.  \n```dart  \nvar number = '12345'.toDoubleOrNull(); // 12345  \nvar notANumber = '123-45'.toDoubleOrNull(); // null  \n```  \n\n### .limitFromEnd()\nLimit the string to a maximum length, taking from the end of the string.\n```dart\nvar longString = \"0123456789\";\nvar noMoreThanThree = longString.limitFromEnd(3); // \"789\"\n```\n\n### .limitFromStart()\nLimit the string to a maximum length, taking from the start of the string.\n```dart\nvar longString = \"0123456789\";\nvar noMoreThanThree = longString.limitFromStart(3); // \"012\"\n```\n\n## int Extensions\n\n### .inRangeOf()  \nReturn the min if this number is smaller then minimum\nReturn the max if this number is bigger the the maximum\nReturn this number if it's between the range\n```dart\n1.inRangeOf(0, 3) // 1 number in range so will return the number\n2.inRangeOf(3, 4) // 3 number is smaller then the range so will return min\n5.inRangeOf(3, 4) // 4 number is bigger then the range so will return max\n```\n\n# Flutter Extensions Full List\n\n## Flutter\n- `Tooltip`\n- `algin`\n- `center`\n- `container`\n- `padding`\n- `navigation`\n- `Context`\n- `Text`\n- `List\u003cWidget\u003e`\n- `Icon`\n\n## Http Extensions\n- `httpGet`\n- `httpPost`\n- `httpPut`\n- `httpDelete`\n\n## Iterables Extensions\n- `sortBy`\n- `toMutableSet`\n- `intersect`\n- `groupBy`\n- `find`\n- `filter`\n- `filterNot`\n- `isEmptyOrNull`\n- `chunks`\n- `zip`\n- `half`\n- `takeOnly`\n- `drop`\n- `firstHalf`\n- `secondHalf`\n- `swap`\n- `getRandom`\n- `firstOrNull`\n- `firstOrNullWhere`\n- `firstOrDefault`\n- `lastOrNull`\n- `lastOrDefault`\n- `forEachIndexed`\n- `sortedDescending`\n- `containsAll`\n- `count`\n- `distinctBy`\n- `subtract`\n- `concatWithSingleList`\n- `concatWithMultipleList`\n- `associate`\n\n## Range Extensions\n- `until`\n\n## Strings Extensions\n- `validateEmail`\n- `removeSurrounding`\n- `isNullOrEmpty`\n- `replaceAfter`\n- `replaceBefore`\n- `orEmpty`\n- `ifEmpty`\n- `lastIndex`\n- `printThis`\n- `equalsIgnoreCase`\n- `toDoubleOrNull`\n- `toIntOrNull`\n- `anyChar`\n- `removeAllWhiteSpace`\n- `isNotBlank`\n- `toCharArray`\n- `insert`\n- `isNullOrWhiteSpace`\n- `asBool`\n\n## DateTime Extensions\n- `toMilliseconds`\n- `toSeconds`\n- `toMinutes`\n- `toHours`\n- `toDays`\n- `isToday`\n- `addOrRemoveYears`\n- `addOrRemoveMonth`\n- `addOrRemoveDay`\n- `addOrRemoveMinutes`\n- `addOrRemoveSeconds`\n- `startOfDay`\n- `startOfMonth`\n- `startOfYear`\n- `operator to add dates`\n- `operator to subtract dates`\n- `tomorrow`\n- `yesterday`\n- `min`\n- `max`\n- `isLeapYear`\n- `limitFromEnd`\n- `limitFromStart`\n\n## Integers Extensions\n- `inRangeOf`\n- `absolute`\n- `isEven`\n- `isOdd`\n- `isPositive`\n- `isNegative`\n- `tenth`\n- `fourth`\n- `third`\n- `half`\n- `doubled`\n- `tripled`\n- `quadrupled`\n- `squared`\n- `asBool`\n\n## Contributing\n\nIf you have read up till here, then 🎉🎉🎉. There are couple of ways in which you can contribute to\nthe growing community of `dart_extensions.dart`.\n\n\n- Propose any feature, enhancement\n- Report a bug\n- Fix a bug\n- Participate in a discussion and help in decision making\n- Write and improve some **documentation**. Documentation is super critical and its importance\n  cannot be overstated!\n- Send in a Pull Request :-)\n\n\n## Contributors ✨\n\u003ctable\u003e\n  \u003ctr\u003e\n      \u003ctd align=\"center\"\u003e\u003ca href=\"https://github.com/droididan\"\u003e\u003cimg src=\"https://avatars2.githubusercontent.com/u/10584019?s=460\u0026v=4\" width=\"64px;\" alt=\"\"/\u003e\u003cbr /\u003e\u003csub\u003e\u003cb\u003eIdan Ayalon\u003c/b\u003e\u003c/sub\u003e\u003c/a\u003e\u003cbr /\u003e\u003ca href=\"\" title=\"Code\"\u003e💻\u003c/a\u003e \u003ca href=\"\" title=\"Documentation\"\u003e📖\u003c/a\u003e \u003ca href=\"\" title=\"Reviewed Pull Requests\"\u003e👀\u003c/a\u003e\u003c/td\u003e\n    \u003c/a\u003e\u003c/td\u003e\n    \u003c/tr\u003e\n  \u003ctr\u003e\n    \u003ctd align=\"center\"\u003e\u003ca href=\"https://github.com/xamantra\"\u003e\u003cimg src=\"https://avatars0.githubusercontent.com/u/37391380?s=400\u0026v=4\" width=\"64px;\" alt=\"\"/\u003e\u003cbr /\u003e\u003csub\u003e\u003cb\u003eXamantra\u003c/b\u003e\u003c/sub\u003e\u003c/a\u003e\u003cbr /\u003e\u003ca href=\"\" title=\"Code\"\u003e💻\u003c/a\u003e \u003ca href=\"\" title=\"Documentation\"\u003e📖\u003c/a\u003e \u003ca href=\"\" title=\"Reviewed Pull Requests\"\u003e👀\u003c/a\u003e\u003c/td\u003e\n  \u003c/a\u003e\u003c/td\u003e\n  \u003c/tr\u003e\n\u003c/table\u003e\n\n\n\n## License  \n```  \nCopyright 2020 Idan Ayalon\n  \nLicensed under the Apache License, Version 2.0 (the \"License\");  \nyou may not use this file except in compliance with the License.  \nYou may obtain a copy of the License at  \n  \n http://www.apache.org/licenses/LICENSE-2.0  \nUnless required by applicable law or agreed to in writing, software  \ndistributed under the License is distributed on an \"AS IS\" BASIS,  \nWITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.  \nSee the License for the specific language governing permissions and  \nlimitations under the License.  \n```","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdroididan%2Fdart_extensions","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdroididan%2Fdart_extensions","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdroididan%2Fdart_extensions/lists"}