Method constructor

Method({
  1. String? edition,
  2. String? name,
  3. List<Option>? options,
  4. bool? requestStreaming,
  5. String? requestTypeUrl,
  6. bool? responseStreaming,
  7. String? responseTypeUrl,
  8. String? syntax,
})

Implementation

Method({
  this.edition,
  this.name,
  this.options,
  this.requestStreaming,
  this.requestTypeUrl,
  this.responseStreaming,
  this.responseTypeUrl,
  this.syntax,
});