SslPolicyReference.fromJson constructor

SslPolicyReference.fromJson(
  1. Map json_
)

Implementation

SslPolicyReference.fromJson(core.Map json_)
    : this(
        sslPolicy: json_.containsKey('sslPolicy')
            ? json_['sslPolicy'] as core.String
            : null,
      );