Interaction constructor

Interaction({
  1. required String date,
  2. required String languageIsoCode,
  3. required String version,
  4. required String customerPlaceCode,
  5. required String platform,
  6. String? fingerprint,
  7. String? publicationReleasedUuid,
  8. String? identifier,
  9. bool? loan,
})

Implementation

Interaction({
  required this.date,
  required this.languageIsoCode,
  required this.version,
  required this.customerPlaceCode,
  required this.platform,
  this.fingerprint,
  this.publicationReleasedUuid,
  this.identifier,
  this.loan,
});