User constructor

const User({
  1. int? id,
  2. String? firstName,
  3. String? lastName,
  4. String? patronymic,
  5. String? birthdate,
  6. String? iin,
  7. String? phoneNumber,
  8. Map<String, dynamic> dynamicAttrs = const {},
})

Implementation

const User({
  this.id,
  this.firstName,
  this.lastName,
  this.patronymic,
  this.birthdate,
  this.iin,
  this.phoneNumber,
  this.dynamicAttrs = const {},
});