$TestIamPermissionsResponse.fromJson constructor

$TestIamPermissionsResponse.fromJson(
  1. Map json_
)

Implementation

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