DescribePermissionSetResponse.fromJson constructor

DescribePermissionSetResponse.fromJson(
  1. Map<String, dynamic> json
)

Implementation

factory DescribePermissionSetResponse.fromJson(Map<String, dynamic> json) {
  return DescribePermissionSetResponse(
    permissionSet: json['PermissionSet'] != null
        ? PermissionSet.fromJson(
            json['PermissionSet'] as Map<String, dynamic>)
        : null,
  );
}