panti-asuhan-app/lib/services/other_function.dart

12 lines
294 B
Dart
Raw Normal View History

2023-05-18 10:58:21 +00:00
class OtherFunction {
int umur(String tanggalLahir) {
// change tanggalLahir to DateTime
DateTime date = DateTime.parse(tanggalLahir);
// get current date
DateTime now = DateTime.now();
// get difference in year
int year = now.year - date.year;
return year;
}
}