MGrpcService constructor

MGrpcService({
  1. required String service,
  2. required String host,
  3. required String userAgent,
  4. required int timeoutIdle,
  5. required int timeoutConnect,
  6. required int timeoutConnection,
  7. required bool tls,
  8. required String tlsAuthority,
  9. required String tlsType,
  10. required String tlsRootFilepath,
  11. required String tlsCertFilepath,
  12. required String tlsKeyFilepath,
  13. required bool authorization,
})

Implementation

MGrpcService({
  required this.service,
  required this.host,
  required this.userAgent,
  required this.timeoutIdle,
  required this.timeoutConnect,
  required this.timeoutConnection,
  required this.tls,
  required this.tlsAuthority,
  required this.tlsType,
  required this.tlsRootFilepath,
  required this.tlsCertFilepath,
  required this.tlsKeyFilepath,
  required this.authorization,
});