SubordinateConfigChain.fromJson constructor
SubordinateConfigChain.fromJson(
- Map json_
Implementation
SubordinateConfigChain.fromJson(core.Map json_)
: this(
pemCertificates: json_.containsKey('pemCertificates')
? (json_['pemCertificates'] as core.List)
.map((value) => value as core.String)
.toList()
: null,
);