idcheckio 9.0.0
idcheckio: ^9.0.0 copied to clipboard
A Flutter plugin used to integrate the IDCheck.io SDK in a flutter project.
example/lib/main.dart
import 'package:flutter/material.dart';
import 'package:idcheckio_example/home/home.dart';
/// Main entry of the example app.
void main() {
runApp(Main());
}
/// Initial Widget encapsulating all the other.
class Main extends StatelessWidget {
const Main({super.key});
@override
Widget build(BuildContext context) {
return MaterialApp(home: Home());
}
}