Method constructor

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

Implementation

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