SqliteWrapperGRPC.withHostAndPort constructor

SqliteWrapperGRPC.withHostAndPort({
  1. String host = 'localhost',
  2. int port = 50051,
  3. bool secure = false,
})

Implementation

SqliteWrapperGRPC.withHostAndPort(
    {String host = 'localhost', int port = 50051, bool secure = false}) {
  _serviceManager =
      GrpcServiceManager(host: host, port: port, secure: secure);
}