ProtobufOptions constructor

const ProtobufOptions({
  1. String contentType = 'application/x-protobuf',
  2. GeneratedMessage? requestMessage,
  3. ShouldDeserialize shouldDeserialize = defaultShouldDeserialize,
  4. ShouldSerialize shouldSerialize = defaultShouldSerialize,
  5. GeneratedMessage? responseMessage,
})

Implementation

const ProtobufOptions(
    {this.contentType = 'application/x-protobuf',
    this.requestMessage,
    this.shouldDeserialize = defaultShouldDeserialize,
    this.shouldSerialize = defaultShouldSerialize,
    this.responseMessage});