PutPolicy constructor

const PutPolicy({
  1. required String scope,
  2. required int deadline,
  3. int? isPrefixalScope,
  4. int? insertOnly,
  5. String? endUser,
  6. String? returnUrl,
  7. String? returnBody,
  8. String? callbackUrl,
  9. String? callbackHost,
  10. String? callbackBody,
  11. String? callbackBodyType,
  12. String? persistentOps,
  13. String? persistentNotifyUrl,
  14. String? persistentPipeline,
  15. bool? forceSaveKey,
  16. String? saveKey,
  17. int? fsizeMin,
  18. int? fsizeLimit,
  19. int? detectMime,
  20. String? mimeLimit,
  21. int? fileType,
})

Implementation

const PutPolicy({
  required this.scope,
  required this.deadline,
  this.isPrefixalScope,
  this.insertOnly,
  this.endUser,
  this.returnUrl,
  this.returnBody,
  this.callbackUrl,
  this.callbackHost,
  this.callbackBody,
  this.callbackBodyType,
  this.persistentOps,
  this.persistentNotifyUrl,
  this.persistentPipeline,
  this.forceSaveKey,
  this.saveKey,
  this.fsizeMin,
  this.fsizeLimit,
  this.detectMime,
  this.mimeLimit,
  this.fileType,
});