flincap_sdk 0.0.1 copy "flincap_sdk: ^0.0.1" to clipboard
flincap_sdk: ^0.0.1 copied to clipboard

The Flincap library provides access to the Flincap API in Dart/Flutter applications.

example/flincap_sdk_example.dart

import 'package:flincap_sdk/flincap_sdk.dart';

void main() async {
  final flincapApi = FlincapApiClient(baseUrl: 'https://flincap.app/api', bearerToken: '<YOUR_FLINCAP_API_TOKEN>');

  try {
    // Example usage: Get Rate
    final rateResponse = await flincapApi.getRate('USDT', 'NGN');
    print(rateResponse);

    // Example usage: Create Transaction
    final transactionData = {
      'selectedCrypt': 'USDT',
      'selectedFiat': 'NGN',
      'email': 'user@example.com',
      'bankName': 'Example Bank',
      // Add other transaction data here...
    };
    final transactionResponse = await flincapApi.createTransaction(transactionData);
    print(transactionResponse);

    // You can use other SDK methods similarly to interact with other endpoints.
  } catch (e) {
    print('Error: $e');
  }
}
1
likes
130
pub points
0%
popularity

Publisher

unverified uploader

The Flincap library provides access to the Flincap API in Dart/Flutter applications.

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (LICENSE)

Dependencies

http

More

Packages that depend on flincap_sdk