ExternalAuthRequest constructor

ExternalAuthRequest({
  1. required int externalClientId,
  2. String? clientPrenom,
  3. String? clientNom,
  4. String? clientTelephone,
  5. String? clientGender,
  6. int? clientAge,
  7. required String clientPhoneId,
  8. required String clientPhoneOs,
  9. required String clientEmail,
  10. required int storeId,
  11. required bool isSubscribed,
  12. int? externalClientAbonnementId,
  13. int? abonnementId,
  14. int? tarifId,
  15. String? clientAbonnementCreation,
  16. String? clientAbonnementExpiration,
})

Implementation

ExternalAuthRequest({
  required this.externalClientId,
  this.clientPrenom,
  this.clientNom,
  this.clientTelephone,
  this.clientGender,
  this.clientAge,
  required this.clientPhoneId,
  required this.clientPhoneOs,
  required this.clientEmail,
  required this.storeId,
  required this.isSubscribed,
  this.externalClientAbonnementId,
  this.abonnementId,
  this.tarifId,
  this.clientAbonnementCreation,
  this.clientAbonnementExpiration,
});