RestMethod constructor

RestMethod({
  1. bool? deprecated,
  2. String? description,
  3. bool? etagRequired,
  4. String? flatPath,
  5. String? httpMethod,
  6. String? id,
  7. RestMethodMediaUpload? mediaUpload,
  8. List<String>? parameterOrder,
  9. Map<String, JsonSchema>? parameters,
  10. String? path,
  11. RestMethodRequest? request,
  12. RestMethodResponse? response,
  13. List<String>? scopes,
  14. bool? supportsMediaDownload,
  15. bool? supportsMediaUpload,
  16. bool? supportsSubscription,
  17. bool? useMediaDownloadService,
})

Implementation

RestMethod({
  this.deprecated,
  this.description,
  this.etagRequired,
  this.flatPath,
  this.httpMethod,
  this.id,
  this.mediaUpload,
  this.parameterOrder,
  this.parameters,
  this.path,
  this.request,
  this.response,
  this.scopes,
  this.supportsMediaDownload,
  this.supportsMediaUpload,
  this.supportsSubscription,
  this.useMediaDownloadService,
});