cc_avenue 0.0.1
cc_avenue: ^0.0.1 copied to clipboard
cc_avenue payment gateway non-seamless
import 'package:flutter/material.dart';
import 'dart:async';
import 'package:flutter/services.dart';
import 'package:cc_avenue/cc_avenue.dart';
void main() {
runApp(MyApp());
}
class MyApp extends StatefulWidget {
@override
_MyAppState createState() => _MyAppState();
}
class _MyAppState extends State<MyApp> {
String _platformVersion = 'cc_avenue';
@override
void initState() {
super.initState();
}
// Platform messages are asynchronous, so we initialize in an async method.
Future<void> initPlatformState() async {
// Platform messages may fail, so we use a try/catch PlatformException.
try {
await CcAvenue.cCAvenueInit(
transUrl: 'https://secure.ccavenue.com/transaction/initTrans',
accessCode: '4YRUXLSRO20O8NIH',
amount: '10',
cancelUrl: 'http://122.182.6.216/merchant/ccavResponseHandler.jsp',
currencyType: 'INR',
merchantId: '2',
orderId: '519',
redirectUrl: 'http://122.182.6.216/merchant/ccavResponseHandler.jsp',
rsaKeyUrl: 'https://secure.ccavenue.com/transaction/jsp/GetRSA.jsp'
);
} on PlatformException {
print('PlatformException');
}
// If the widget was removed from the tree while the asynchronous platform
// message was in flight, we want to discard the reply rather than calling
// setState to update our non-existent appearance.
}
@override
Widget build(BuildContext context) {
return MaterialApp(
home: Scaffold(
appBar: AppBar(
title: const Text('Plugin example app'),
),
body: Center(
child: ElevatedButton(
onPressed: (){
initPlatformState();
}, child: Text('Invoke'),
),
),
),
);
}
}