UserStoreTrDto.sep constructor

UserStoreTrDto.sep(
  1. int? id,
  2. String? email,
  3. int? last_seen_ts,
  4. String? name,
  5. String? surname,
  6. int records_downloaded,
  7. int changes_approved_count,
  8. int changes_denied_count,
  9. TrDto trDto,
)

Implementation

UserStoreTrDto.sep(
    int? id,
    String? email,
    int? last_seen_ts,
    String? name,
    String? surname,
    int records_downloaded,
    int changes_approved_count,
    int changes_denied_count,
    TrDto trDto) {
  super.clone(trDto);
  this.id = id;
  this.email = email;
  this.last_seen_ts = last_seen_ts;
  this.name = name;
  this.surname = surname;
  this.records_downloaded = records_downloaded;
  this.changes_approved_count = changes_approved_count;
  this.changes_denied_count = changes_denied_count;
}