Data constructor

Data({
  1. int? id,
  2. String? fileType,
  3. String? sourceSystem,
  4. String? status,
  5. String? fileName,
  6. String? downloadURL,
  7. String? expiryDate,
})

Implementation

Data(
    {this.id,
    this.fileType,
    this.sourceSystem,
    this.status,
    this.fileName,
    this.downloadURL,
    this.expiryDate});