> For the complete documentation index, see [llms.txt](https://stawa.gitbook.io/estraapi-documentation/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://stawa.gitbook.io/estraapi-documentation/language-examples/dart/examples.md).

# Examples

All examples of EstraAPI will be in this page with Dart Language

{% hint style="info" %}
For more examples, please check out our EstraDart Github

-> <https://github.com/StawaDev/EstraDart>
{% endhint %}

### Simple Print Examples

```dart
library Estra;
import 'package:estradart/estradart.dart';

void main() async {
  print("Slap GIF: ${await EstraSFW.slap()}");
  print("Run GIF: ${await EstraSFW.run()}");
  print("Truth Challenge: ${await EstraGames.truth()}");
  // More EndPoint Use EstraHelp Function!
}

```
