SubordinateConfigChain.fromJson constructor

SubordinateConfigChain.fromJson(
  1. 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,
      );