ChannelCredentials.insecure constructor

const ChannelCredentials.insecure({
  1. String? authority,
})

Disable TLS. RPCs are sent in clear text.

Implementation

const ChannelCredentials.insecure({String? authority})
    : this._(false, null, null, authority, null);