RelativeDistinguishedName.fromJson constructor

RelativeDistinguishedName.fromJson(
  1. Map json_
)

Implementation

RelativeDistinguishedName.fromJson(core.Map json_)
  : this(
      attributes:
          (json_['attributes'] as core.List?)
              ?.map(
                (value) => AttributeTypeAndValue.fromJson(
                  value as core.Map<core.String, core.dynamic>,
                ),
              )
              .toList(),
    );