Skip to content

nirmanlab/payyo-dart-sdk

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

20 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Payyo SDK for dart developers.

license.

Usage

A simple usage example:

main() async {
  PayyoMobileSDK.configurations = PayyoAPIConfiguration()
      ..endpoint = 'SANDBOX_OR_PRODUCTION_ENDPOINT'
      ..version = 'v2'
      ..publicKey = 'YOUR_PUBLIC_KEY'
      ..secreteKey = 'YOUR_SECRETE_KEY';
  
  Transaction transaction = Transaction();
  
  var response = await transaction.getNextAction('transactionId');
}

Features and bugs

Please file feature requests and bugs at the issue tracker.