rapyd 0.1.5 copy "rapyd: ^0.1.5" to clipboard
rapyd: ^0.1.5 copied to clipboard

Rapyd Flutter SDK for accessing the Payments API, has in-built methods for making proper API calls easily.

example/example.dart

import 'package:rapyd/rapyd.dart';

Future<void> main() async {
  final rapydClient = RapydClient('<rapydAccessKey>', '<rapydSecretKey>');

  try {
    final customer = await rapydClient.createNewCustomer(
      email: 'example@name.com',
      name: 'User',
    );

    print('Created customer successfully, ID: ${customer.data.id}');
  } catch (e) {
    print('ERROR: ${e.toString()}');
  }
}
2
likes
120
pub points
9%
popularity

Publisher

verified publishersouvikbiswas.com

Rapyd Flutter SDK for accessing the Payments API, has in-built methods for making proper API calls easily.

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (LICENSE)

Dependencies

convert, crypto, http

More

Packages that depend on rapyd