Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/moralcode/snipeit-flutter
A Flutter library for interacting with the SnipeIT API
https://github.com/moralcode/snipeit-flutter
asset-management flutter snipe-it
Last synced: 14 days ago
JSON representation
A Flutter library for interacting with the SnipeIT API
- Host: GitHub
- URL: https://github.com/moralcode/snipeit-flutter
- Owner: MoralCode
- License: gpl-3.0
- Created: 2023-02-13T20:53:45.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2023-02-13T20:54:30.000Z (almost 2 years ago)
- Last Synced: 2024-11-02T07:42:05.453Z (2 months ago)
- Topics: asset-management, flutter, snipe-it
- Language: Dart
- Homepage:
- Size: 34.2 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# SnipeIT Flutter API Wrapper
This is a library that intends to make it easier to interact with the [SnipeIT API](https://snipe-it.readme.io/reference/api-overview).
## Usage
```dart
import 'package:snipeit/snipeit.dart';SnipeIT snipeitapi = SnipeIT(
url:"https://develop.snipeitapp.com",
accessToken: "eyJ0eXAiOiJK......."
);//get locations
List = locations = await snipeitapi.getLocations()```
## Building the library for development
This library relies on some generated code to perform json serialization. This code can be generated with `dart run build_runner build`