RestResource constructor

RestResource({
  1. bool? deprecated,
  2. Map<String, RestMethod>? methods,
  3. Map<String, RestResource>? resources,
})

Implementation

RestResource({
  this.deprecated,
  this.methods,
  this.resources,
});