> ## Documentation Index
> Fetch the complete documentation index at: https://docs.swervpay.co/llms.txt
> Use this file to discover all available pages before exploring further.

# Dart

> Dart Client for Swervpay

### Installation

Install [swervpay-dart](https://pub.dev/packages/swervpay_dart) sdk into your new or existing Flutter/Dart application.

```bash Shell theme={null}
$ flutter pub add swervpay_dart

# OR

$ dart pub add swervpay_dart
```

### Usage

```dart Dart/Flutter theme={null}
import 'package:swervpay_dart/swervpay_dart.dart';

void main() async {

    final swervpay = Swervpay(
        apiKey
    );

}
```
