copyWith method

ManualVerificationFileResponseModel copyWith({
  1. String? fileId,
  2. String? fileName,
  3. String? mimeType,
  4. int? sizeBytes,
  5. int? uploadDateUnix,
})

Implementation

ManualVerificationFileResponseModel copyWith(
    {String? fileId,
    String? fileName,
    String? mimeType,
    int? sizeBytes,
    int? uploadDateUnix}) {
  return ManualVerificationFileResponseModel(
      fileId: fileId ?? this.fileId,
      fileName: fileName ?? this.fileName,
      mimeType: mimeType ?? this.mimeType,
      sizeBytes: sizeBytes ?? this.sizeBytes,
      uploadDateUnix: uploadDateUnix ?? this.uploadDateUnix);
}