$KeyAccessJustificationsPolicy.fromJson constructor

$KeyAccessJustificationsPolicy.fromJson(
  1. Map json_
)

Implementation

$KeyAccessJustificationsPolicy.fromJson(core.Map json_)
  : this(
      allowedAccessReasons:
          (json_['allowedAccessReasons'] as core.List?)
              ?.map((value) => value as core.String)
              .toList(),
    );