testing for WebView

Flutter sdk for aero sync

Flutter wrapper around our Android and iOS mobile SDKs

Learn about the Aerosync payments Flow

Sign up for an Aerosync Account and generate API key and API Secret from Aerosync Dashboard. Using the test keys helps simulate the test environment. No actual transaction happens when using the test keys. Use live keys once you have tested the application thoroughly ready to go.

Prerequisites

  • Installation
  • Requirements
  • Usage
  • Dependencies
  • Version specifications

GETTING STARTED (STEP 1)

In your flutter project directory:

USING FLUTTER :
sh flutter pub add flutter_aerosync_test

STEP 2 :

flutter pub get 

This will add a line like this to your package's pubspec.yaml (and run an implicit flutter pub get):


dependencies:
  flutter_aerosync_test: ^0.0.1  
  

IMPORT IT

 import 'package:flutter_aerosync_test/flutter_aerosync_test.dart';
AeroSyncSdk(
                token:{Your Aerosync token}
                onSuccess:{message from webview to flutter},
                onError:{Error message from webview to flutter}
            )