iranian_national_code

Last updated:

0 purchases

iranian_national_code Image
iranian_national_code Images
Add to Cart

Description:

iranian national code

Iranian NationalCode #
A library for validating the national code and converting Persian numbers to English
Install Package #
Add the following line to your pubspec.yaml under dependencies:
dependencies:
iranian_national_code: ^1.0.0
copied to clipboard
Then run:
flutter pub get
copied to clipboard
Usage #
Import it:
import 'package:iranian_national_code/iranian_national_code.dart';
copied to clipboard
Now in your Dart code, you can use:
final result = '1234567890'.isValidNationalCode();
if (result) {
// national code is valid
} else {
// national code is not valid
}
copied to clipboard
Read the unit tests under test, or see code example below:
validating the national code
final result = '3974017844'.isValidNationalCode();
print(result); // true

final result = '7730942860'.isValidNationalCode();
print(result); // true

final result = '12345KjHiF67890'.isValidNationalCode();
print(result); // false

final result = ''.isValidNationalCode();
print(result); // false

final result = '123456789012345'.isValidNationalCode();
print(result); // false

final result = '12@4561;_345'.isValidNationalCode();
print(result); // false
copied to clipboard
convert persian/farsi digits to english
final result = '۱۲۳۴۵۶۷۸۹۰'.convertPersianToEnglishNumbers();
print(result); // '1234567890'

final result = '۱۲۳۴Fg۵۶۷۸۹۰'.convertPersianToEnglishNumbers();
print(result); // '1234Fg567890'

final result = ''.convertPersianToEnglishNumbers();
print(result); // ''
copied to clipboard
by using this package you can generate national code
final example1 = generateNationalCode();
print(example1); // 2365960464
print(example1.isValidNationalCode()); // true

final example2 = generateNationalCode();
print(example2); // 1168880971
print(example2.isValidNationalCode()); // true
copied to clipboard
You can also generate a round national code and validate it
final example3 = generateRoundNationalCode();
print(example3); // 1000010104
print(example3.isValidNationalCode()); // true

final example4 = generateRoundNationalCode();
print(example4); // 3101001102
print(example4.isValidNationalCode()); // true
copied to clipboard
by Shervin Hassanzadeh #
contact me: [email protected]

License:

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Files In This Product:

Customer Reviews

There are no reviews.