{"id":15713193,"url":"https://github.com/hacker1024/notifying_list.dart","last_synced_at":"2025-07-09T04:04:55.286Z","repository":{"id":114341958,"uuid":"499535606","full_name":"hacker1024/notifying_list.dart","owner":"hacker1024","description":"A Dart package providing list implementations that notify when they're modified.","archived":false,"fork":false,"pushed_at":"2023-04-23T16:26:46.000Z","size":9,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-07-09T04:04:53.976Z","etag":null,"topics":["dart","dart-library","dart-package","dart-streams","dartlang","reactive","streams"],"latest_commit_sha":null,"homepage":"https://pub.dev/packages/notifying_list","language":"Dart","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/hacker1024.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":"2022-06-03T14:09:53.000Z","updated_at":"2023-04-23T16:28:16.000Z","dependencies_parsed_at":null,"dependency_job_id":"c63fddb2-fe41-4384-bdc7-df5b1e0a6eb0","html_url":"https://github.com/hacker1024/notifying_list.dart","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/hacker1024/notifying_list.dart","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hacker1024%2Fnotifying_list.dart","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hacker1024%2Fnotifying_list.dart/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hacker1024%2Fnotifying_list.dart/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hacker1024%2Fnotifying_list.dart/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/hacker1024","download_url":"https://codeload.github.com/hacker1024/notifying_list.dart/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hacker1024%2Fnotifying_list.dart/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":264390668,"owners_count":23600560,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","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","dart-library","dart-package","dart-streams","dartlang","reactive","streams"],"created_at":"2024-10-03T21:21:48.363Z","updated_at":"2025-07-09T04:04:55.267Z","avatar_url":"https://github.com/hacker1024.png","language":"Dart","funding_links":[],"categories":[],"sub_categories":[],"readme":"# notifying_list\nA Dart package providing list implementations that notify when they're modified.\n\n## Features\n- A callback-based notifying list (`CallbackNotifyingList`)\n- A stream-based notifying list (`StreamNotifyingList`)\n\n## Getting started\nImport the library:\n\n```dart\nimport 'package:notifying_list/notifying_list.dart';\n```\n\n## Usage\n\n```dart\nfinal callbackList = CallbackNotifyingList\u003cnum\u003e(() =\u003e print('Modified!'));\ncallbackList.add(0); // 'Modified!'\n\nfinal streamList = StreamNotifyingList()\n  ..stream.forEach(\n    (currentList) =\u003e print('Modified! Current list: $currentList'),\n  );\nstreamList.add(0); // 'Modified! Current list: [0]'\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhacker1024%2Fnotifying_list.dart","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fhacker1024%2Fnotifying_list.dart","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhacker1024%2Fnotifying_list.dart/lists"}