OneTimeLinkInfo constructor

OneTimeLinkInfo({
  1. required String linkId,
  2. required FileInfo file,
  3. required String url,
  4. required int state,
  5. required String stateLabel,
  6. String? callbackUrl,
  7. required bool notify,
  8. required DateTime created,
  9. required bool downloaded,
})

Implementation

OneTimeLinkInfo({
  required this.linkId,
  required this.file,
  required this.url,
  required this.state,
  required this.stateLabel,
  this.callbackUrl,
  required this.notify,
  required this.created,
  required this.downloaded,
});