ProtoMethod constructor

ProtoMethod({
  1. required String name,
  2. required String requestType,
  3. required String responseType,
  4. bool isClientStreaming = false,
  5. bool isServerStreaming = false,
})

Implementation

ProtoMethod({
  required this.name,
  required this.requestType,
  required this.responseType,
  this.isClientStreaming = false,
  this.isServerStreaming = false,
});