CreatePermissionSetResponse.fromJson constructor

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

Implementation

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