egyptian_id_parser 1.1.0 copy "egyptian_id_parser: ^1.1.0" to clipboard
egyptian_id_parser: ^1.1.0 copied to clipboard

A Dart package that provides functionality to extract personal information from the Egyptian National ID number.

example/egyptian_id_parser_example.dart

import 'package:egyptian_id_parser/egyptian_id_parser.dart';

void main() {
  String idNumber = "12345678901234"; // Replace with a valid ID number
  var id = EgyptianIdParser(idNumber);

  print('Birth Date: ${id.birthDate}');
  print('Governorate: ${id.governorate}');
  print('Gender: ${id.gender}');
  print('Age: ${id.age}');
}
59
likes
150
points
20
downloads

Publisher

unverified uploader

Weekly Downloads

A Dart package that provides functionality to extract personal information from the Egyptian National ID number.

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (license)

More

Packages that depend on egyptian_id_parser