Resource constructor

Resource({
  1. String? id,
  2. String? parentId,
  3. String? path,
  4. String? pathPart,
  5. Map<String, Method>? resourceMethods,
})

Implementation

Resource({
  this.id,
  this.parentId,
  this.path,
  this.pathPart,
  this.resourceMethods,
});