SslSettings.fromJson constructor
SslSettings.fromJson(
- Map json_
Implementation
SslSettings.fromJson(core.Map json_)
: this(
certificateId: json_.containsKey('certificateId')
? json_['certificateId'] as core.String
: null,
pendingManagedCertificateId:
json_.containsKey('pendingManagedCertificateId')
? json_['pendingManagedCertificateId'] as core.String
: null,
sslManagementType: json_.containsKey('sslManagementType')
? json_['sslManagementType'] as core.String
: null,
);