KafkaBootstrapServer.fromJson constructor

KafkaBootstrapServer.fromJson(
  1. Map json_
)

Implementation

KafkaBootstrapServer.fromJson(core.Map json_)
  : this(
      host: json_['host'] as core.String?,
      port: json_['port'] as core.int?,
      privateIpAddress: json_['privateIpAddress'] as core.String?,
    );