vies 1.1.0 vies: ^1.1.0 copied to clipboard
This dart lib is basically calling web service provided by VIES for check VAT validity
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),
// validationLevel: ValidationLevel.all,
// regexType: RegexType.world,
);
print('$res');
} catch (e) {
print('$e');
}
}