$TestIamPermissionsResponse.fromJson constructor
$TestIamPermissionsResponse.fromJson(
- Map _json
Implementation
$TestIamPermissionsResponse.fromJson(core.Map _json)
: this(
permissions: _json.containsKey('permissions')
? (_json['permissions'] as core.List)
.map((value) => value as core.String)
.toList()
: null,
);