KeckUser constructor

KeckUser({
  1. required String userId,
  2. required String email,
  3. required String companyName,
  4. required String phone,
  5. required DateTime createTime,
  6. required int cashregisterCount,
  7. required int signatureCount,
  8. required String taxnr,
  9. required bool isProduction,
  10. required String addressCity,
  11. required String addressStreet,
  12. required String addressZip,
  13. required String footer1,
  14. required String footer2,
  15. String? footer3,
  16. String? footer4,
  17. String? logoUrl,
  18. String? thanksMessage,
  19. String? apiKey,
  20. String? uid,
  21. String? gln,
  22. String? benid,
  23. String? pin,
  24. String? tid,
})

Implementation

KeckUser({
  required this.userId,
  required this.email,
  required this.companyName,
  required this.phone,
  required this.createTime,
  required this.cashregisterCount,
  required this.signatureCount,
  required this.taxnr,
  required this.isProduction,
  required this.addressCity,
  required this.addressStreet,
  required this.addressZip,
  required this.footer1,
  required this.footer2,
  this.footer3,
  this.footer4,
  this.logoUrl,
  this.thanksMessage,
  this.apiKey,
  this.uid,
  this.gln,
  this.benid,
  this.pin,
  this.tid
});