Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/sbis04/rapyd_sdk_flutter
Rapyd Flutter SDK for accessing the Payments API
https://github.com/sbis04/rapyd_sdk_flutter
dart flutter payments-api rapyd
Last synced: 19 days ago
JSON representation
Rapyd Flutter SDK for accessing the Payments API
- Host: GitHub
- URL: https://github.com/sbis04/rapyd_sdk_flutter
- Owner: sbis04
- License: mit
- Created: 2022-05-25T14:20:37.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2022-05-31T07:59:11.000Z (over 2 years ago)
- Last Synced: 2024-10-10T19:29:10.634Z (about 1 month ago)
- Topics: dart, flutter, payments-api, rapyd
- Language: Dart
- Homepage: https://pub.dev/packages/rapyd
- Size: 19.5 KB
- Stars: 6
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# Rapyd Flutter SDK
This is an **UNOFFICIAL** Flutter SDK for using [Rapyd APIs](https://docs.rapyd.net/build-with-rapyd/reference/api-reference) in Dart/Flutter apps.
> 🚧 **WIP (Disclaimer):** This package is in very early stage of development and has limited APIs to interact with. Feel free to contribute to this project as much as possible to make it production ready as soon as possible.
## Installation
Add this to your package's `pubspec.yaml` file:
```yml
dependencies:
version: ^0.1.5
```You can install packages from the command line.
For Flutter projects:
```bash
flutter pub add rapyd
```For Dart projects:
```bash
dart pub add rapyd
```## Usage
You can checkout the comprehensive example present in the [`example`](example/example.dart) folder.
Following is a simple example of initializing a Rapyd Client and creating a new user using this SDK:
```dart
// Initializing
final rapydClient = RapydClient('', '');try {
// Creating a new customer
final customer = await rapydClient.createNewCustomer(
email: '[email protected]',
name: 'User',
);
print('Created customer successfully, ID: ${customer.data.id}');
} catch (e) {
print('ERROR: ${e.toString()}');
}
```## License
Copyright (c) 2022 Souvik Biswas
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.