flutterwave_standard_smart 1.0.4
flutterwave_standard_smart: ^1.0.4 copied to clipboard
Flutterwave's official library that wraps the standard implementation.
Use this package as a library
Depend on it
Run this command:
With Flutter:
$ flutter pub add flutterwave_standard_smartThis will add a line like this to your package's pubspec.yaml (and run an implicit flutter pub get):
dependencies:
flutterwave_standard_smart: ^1.0.4Alternatively, your editor might support flutter pub get. Check the docs for your editor to learn more.
Import it
Now in your Dart code, you can use:
import 'package:flutterwave_standard_smart/core/TransactionCallBack.dart';
import 'package:flutterwave_standard_smart/core/flutterwave.dart';
import 'package:flutterwave_standard_smart/core/transaction_status.dart';
import 'package:flutterwave_standard_smart/flutterwave.dart';
import 'package:flutterwave_standard_smart/models/TransactionError.dart';
import 'package:flutterwave_standard_smart/models/requests/customer.dart';
import 'package:flutterwave_standard_smart/models/requests/customizations.dart';
import 'package:flutterwave_standard_smart/models/requests/standard_request.dart';
import 'package:flutterwave_standard_smart/models/responses/charge_response.dart';
import 'package:flutterwave_standard_smart/models/responses/standard_response.dart';
import 'package:flutterwave_standard_smart/models/subaccount.dart';
import 'package:flutterwave_standard_smart/utils.dart';
import 'package:flutterwave_standard_smart/view/flutterwave_in_app_browser.dart';
import 'package:flutterwave_standard_smart/view/standard_widget.dart';
import 'package:flutterwave_standard_smart/view/view_utils.dart';