RestMethod constructor

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

Implementation

RestMethod({
  this.apiVersion,
  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,
});