AccountInfo constructor

AccountInfo({
  1. required int registrationMonth,
  2. required int registrationYear,
  3. required String phoneNumberCountryCode,
  4. required int lastNameChangeDate,
  5. required int lastPhotoChangeDate,
})

Implementation

AccountInfo({
  required this.registrationMonth,
  required this.registrationYear,
  required this.phoneNumberCountryCode,
  required this.lastNameChangeDate,
  required this.lastPhotoChangeDate,
});