idfy_license_checker 0.0.2 copy "idfy_license_checker: ^0.0.2" to clipboard
idfy_license_checker: ^0.0.2 copied to clipboard

A Dart package for verifying Indian Driving Licenses using IDfy APIs. Supports DL data extraction and government source verification.

example/main.dart

import 'package:idfy_license_checker/idfy_license_checker.dart';

void main() async {
  final dlManager = DLVerificationManager(
    apiKey: 'your-idfy-api-key',
    accountId: 'your-idfy-account-id',
  );

  final extractResult =
      await dlManager.extractDLData('https://example.com/license.jpg');
  print('Extracted Data: $extractResult');

  final verifyResult = await dlManager.verifyDL(
    idNumber: 'DL-XXXXXXXXXXXX',
    dob: 'YYYY-MM-DD',
  );
  print('Verification Result: $verifyResult');
}
1
likes
150
points
11
downloads

Documentation

API reference

Publisher

unverified uploader

Weekly Downloads

A Dart package for verifying Indian Driving Licenses using IDfy APIs. Supports DL data extraction and government source verification.

Repository (GitHub)
View/report issues

License

MIT (license)

Dependencies

cupertino_icons, flutter, http

More

Packages that depend on idfy_license_checker