guardlinesdk 0.1.0
guardlinesdk: ^0.1.0 copied to clipboard
Project integration Guardline SDK and API.
example/lib/main.dart
import 'package:flutter/material.dart';
import 'package:guardlinesdk/guardlinepage.dart';
void main() {
// Ensure DemoApp is defined in ../clientsdk/DemoApp.dart and imported correctly
const token =
'[SEU TOKEN AQUI]';
runApp(
GuardlinePage(
token, // Replace with your actual token
primaryColor: Colors.blueAccent,
onResult: (String text) {
print(text);
},
),
);
}