Dataset constructor

Dataset({
  1. DateTime? creationDate,
  2. int? dataStorage,
  3. String? datasetName,
  4. String? identityId,
  5. String? lastModifiedBy,
  6. DateTime? lastModifiedDate,
  7. int? numRecords,
})

Implementation

Dataset({
  this.creationDate,
  this.dataStorage,
  this.datasetName,
  this.identityId,
  this.lastModifiedBy,
  this.lastModifiedDate,
  this.numRecords,
});