age_calculator_helper 1.0.1
age_calculator_helper: ^1.0.1 copied to clipboard
A Dart package to calculate age, zodiac, milestones, and more.
example/age_calculator_helper_example.dart
import 'package:age_calculator_helper/age_calculator_helper.dart';
void main() {
final helper = AgeCalculatorHelper(DateTime(1997, 3, 5));
print('Age: ${helper.getAge()}');
print('Next birthday: ${helper.timeToNextBirthday()}');
print('Indian Zodiac: ${helper.getIndianZodiac()}');
}