vies 1.0.2 copy "vies: ^1.0.2" to clipboard
vies: ^1.0.2 copied to clipboard

This dart lib is basically calling web service provided by VIES for check VAT validity

example/vies_example.dart

import 'package:vies/vies.dart';

Future<void> main() async {
  // Check VAT Number validity and get relative informations
  try {
    final ViesValidationResponse res = await ViesProvider.validateVat(
      countryCode: 'FR',
      vatNumber: '64443061841',
      timeout: const Duration(seconds: 50),
    );
    print(res.toString());
  } catch (e) {
    print(e.toString());
  }
}
4
likes
120
pub points
54%
popularity

Publisher

verified publishercomapps.be

This dart lib is basically calling web service provided by VIES for check VAT validity

Homepage
Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (LICENSE)

Dependencies

html_unescape, http

More

Packages that depend on vies